/*
Theme Name: Kratom Verdict
Theme URI: https://kratomverdict.com
Author: Ali & ChatGPT
Author URI: https://kratomverdict.com
Description: Premium custom WordPress theme built exclusively for Kratom Verdict.
Version: 1.0.0
Requires at least: 6.8
Tested up to: 7.0
Requires PHP: 8.1
License: GNU General Public License v2 or later
Text Domain: kratom-verdict
*/

:root {
    --kv-green-dark: #0f3d2e;
    --kv-green: #176b4a;
    --kv-green-light: #eaf4ef;
    --kv-gold: #d4a72c;
    --kv-text: #1f2933;
    --kv-muted: #667085;
    --kv-border: #e4e7ec;
    --kv-white: #ffffff;
    --kv-background: #f8faf9;
    --kv-container: 1220px;
    --kv-radius: 18px;
    --kv-shadow: 0 12px 35px rgba(15, 61, 46, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--kv-background);
    color: var(--kv-text);
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.kv-container {
    width: min(100% - 40px, var(--kv-container));
    margin-inline: auto;
}

/* Top bar */

.kv-topbar {
    background: var(--kv-green-dark);
    color: var(--kv-white);
    font-size: 14px;
}

.kv-topbar .kv-container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.kv-top-right ul {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Main header */

.kv-main-header {
    background: var(--kv-white);
    border-bottom: 1px solid var(--kv-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.kv-main-header .kv-container {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.kv-logo a {
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
    color: var(--kv-green-dark);
    letter-spacing: -0.7px;
}

.kv-logo .custom-logo {
    width: auto;
    max-height: 58px;
}

.kv-navigation ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.kv-navigation a {
    font-size: 15px;
    font-weight: 700;
    color: var(--kv-text);
    transition: color 0.2s ease;
}

.kv-navigation a:hover,
.kv-navigation .current-menu-item > a {
    color: var(--kv-green);
}

/* Main content */

.kv-site-main {
    padding: 72px 0;
}

.kv-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.kv-post-card {
    overflow: hidden;
    background: var(--kv-white);
    border: 1px solid var(--kv-border);
    border-radius: var(--kv-radius);
    box-shadow: var(--kv-shadow);
}

.kv-post-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--kv-green-light);
}

.kv-post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.kv-post-card:hover .kv-post-card-image img {
    transform: scale(1.04);
}

.kv-post-card-content {
    padding: 24px;
}

.kv-post-card-title {
    margin-bottom: 10px;
    font-size: 23px;
    line-height: 1.25;
}

.kv-post-card-title a:hover {
    color: var(--kv-green);
}

.kv-post-card-meta {
    margin-bottom: 14px;
    color: var(--kv-muted);
    font-size: 14px;
}

.kv-post-card-excerpt {
    margin-bottom: 20px;
    color: var(--kv-muted);
}

.kv-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--kv-green);
    color: var(--kv-white);
    font-weight: 700;
}

.kv-read-more:hover {
    background: var(--kv-green-dark);
}

.kv-no-content {
    padding: 80px 30px;
    text-align: center;
    background: var(--kv-white);
    border-radius: var(--kv-radius);
}

/* Pagination */

.kv-pagination {
    margin-top: 44px;
}

.kv-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.kv-pagination .page-numbers {
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--kv-border);
    border-radius: 10px;
    background: var(--kv-white);
}

.kv-pagination .current,
.kv-pagination .page-numbers:hover {
    background: var(--kv-green);
    border-color: var(--kv-green);
    color: var(--kv-white);
}

/* Footer */

.kv-footer {
    margin-top: 70px;
    background: var(--kv-green-dark);
    color: rgba(255, 255, 255, 0.86);
}

.kv-footer-grid {
    padding: 72px 0;
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 1.15fr;
    gap: 60px;
}

.kv-footer h2,
.kv-footer h3 {
    margin-bottom: 16px;
    color: var(--kv-white);
}

.kv-footer-brand h2 {
    font-size: 26px;
}

.kv-footer-navigation li + li {
    margin-top: 10px;
}

.kv-footer a:hover {
    color: var(--kv-gold);
}

.kv-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.kv-footer-bottom .kv-container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Responsive */

@media (max-width: 960px) {
    .kv-topbar .kv-container,
    .kv-main-header .kv-container {
        flex-direction: column;
        justify-content: center;
        padding-block: 16px;
    }

    .kv-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .kv-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kv-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .kv-container {
        width: min(100% - 28px, var(--kv-container));
    }

    .kv-top-right ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .kv-post-grid,
    .kv-footer-grid {
        grid-template-columns: 1fr;
    }

    .kv-site-main {
        padding: 46px 0;
    }
}
/* =========================================================
   Homepage
========================================================= */

.kv-homepage {
    overflow: hidden;
}

.kv-home-section {
    padding: 96px 0;
}

.kv-section-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.kv-section-heading > div {
    max-width: 650px;
}

.kv-section-heading > p {
    max-width: 500px;
    color: var(--kv-muted);
}

.kv-section-label,
.kv-eyebrow {
    margin-bottom: 12px;
    color: var(--kv-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.kv-section-heading h2 {
    color: var(--kv-green-dark);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

/* Hero */

.kv-hero {
    position: relative;
    padding: 92px 0 105px;
    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(212, 167, 44, 0.17),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #f8fcfa 0%,
            #eef7f2 52%,
            #e5f1eb 100%
        );
}

.kv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(15, 61, 46, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 61, 46, 0.08) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
    pointer-events: none;
}

.kv-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
}

.kv-hero-content h1 {
    max-width: 760px;
    color: var(--kv-green-dark);
    font-size: clamp(50px, 6.5vw, 82px);
    line-height: 0.98;
    letter-spacing: -3px;
}

.kv-hero-content h1 span {
    display: block;
    color: var(--kv-green);
}

.kv-hero-description {
    max-width: 690px;
    margin-top: 28px;
    color: #52635b;
    font-size: 19px;
    line-height: 1.75;
}

.kv-hero-search {
    max-width: 700px;
    margin-top: 34px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--kv-white);
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 61, 46, 0.12);
}

.kv-hero-search input {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    color: var(--kv-text);
    font: inherit;
    border: 0;
    outline: 0;
    background: transparent;
}

.kv-hero-search input::placeholder {
    color: #8b9691;
}

.kv-hero-search button {
    min-width: 125px;
    min-height: 56px;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    background: var(--kv-green);
    color: var(--kv-white);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.kv-hero-search button:hover {
    background: var(--kv-green-dark);
    transform: translateY(-1px);
}

.kv-hero-stats {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.kv-hero-stats div {
    display: flex;
    flex-direction: column;
}

.kv-hero-stats strong {
    color: var(--kv-green-dark);
    font-size: 27px;
    line-height: 1.1;
}

.kv-hero-stats span {
    margin-top: 5px;
    color: var(--kv-muted);
    font-size: 13px;
    font-weight: 700;
}

.kv-hero-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}

.kv-hero-badge {
    position: relative;
    z-index: 3;
    width: 290px;
    height: 290px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(23, 107, 74, 0.97),
            rgba(15, 61, 46, 0.99)
        );
    color: var(--kv-white);
    box-shadow:
        0 35px 70px rgba(15, 61, 46, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.kv-hero-badge::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: inherit;
}

.kv-hero-badge span {
    margin-bottom: 14px;
    color: var(--kv-gold);
    font-family: Georgia, serif;
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
}

.kv-hero-badge strong {
    font-size: 25px;
}

.kv-hero-badge small {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.72);
}

.kv-hero-orbit {
    position: absolute;
    border: 1px solid rgba(23, 107, 74, 0.17);
    border-radius: 50%;
}

.kv-orbit-one {
    width: 390px;
    height: 390px;
}

.kv-orbit-two {
    width: 480px;
    height: 480px;
}

.kv-floating-card {
    position: absolute;
    z-index: 4;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--kv-green-dark);
    border: 1px solid rgba(15, 61, 46, 0.1);
    border-radius: 12px;
    box-shadow: var(--kv-shadow);
    font-size: 13px;
    font-weight: 800;
}

.kv-floating-card-one {
    top: 75px;
    right: 4px;
}

.kv-floating-card-two {
    bottom: 85px;
    left: 4px;
}

/* Color cards */

.kv-color-section {
    background: var(--kv-white);
}

.kv-color-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.kv-color-card {
    position: relative;
    min-height: 310px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--kv-border);
    border-radius: 20px;
    background: var(--kv-white);
    box-shadow: 0 10px 35px rgba(16, 24, 40, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.kv-color-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 115px;
    height: 115px;
    border-radius: 0 0 0 100%;
    opacity: 0.13;
    background: currentColor;
}

.kv-color-card:hover {
    transform: translateY(-7px);
    border-color: currentColor;
    box-shadow: 0 22px 45px rgba(16, 24, 40, 0.1);
}

.kv-color-card-number {
    width: 52px;
    height: 52px;
    margin-bottom: 30px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: currentColor;
    color: var(--kv-white);
    font-size: 22px;
    font-weight: 900;
}

.kv-color-card h3 {
    margin-bottom: 12px;
    color: var(--kv-text);
    font-size: 22px;
}

.kv-color-card p {
    flex: 1;
    color: var(--kv-muted);
    font-size: 14px;
}

.kv-color-red {
    color: #a93737;
}

.kv-color-green {
    color: #287c55;
}

.kv-color-white {
    color: #718096;
}

.kv-color-gold {
    color: #b88918;
}

.kv-color-yellow {
    color: #c59b18;
}

.kv-card-link {
    margin-top: 24px;
    color: var(--kv-green);
    font-size: 14px;
    font-weight: 800;
}

/* Family section */

.kv-family-section {
    background: var(--kv-background);
}

.kv-family-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.kv-family-card {
    min-height: 105px;
    padding: 21px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    background: var(--kv-white);
    border: 1px solid var(--kv-border);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.04);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.kv-family-card:hover {
    transform: translateY(-4px);
    border-color: var(--kv-green);
}

.kv-family-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--kv-green-light);
    color: var(--kv-green);
    font-size: 17px;
    font-weight: 900;
}

.kv-family-card h3 {
    color: var(--kv-green-dark);
    font-size: 17px;
}

.kv-family-card p {
    margin-top: 3px;
    color: var(--kv-muted);
    font-size: 12px;
}

.kv-family-card > span:last-child {
    color: var(--kv-green);
    font-weight: 900;
}

/* Featured guide */

.kv-featured-section {
    background: var(--kv-white);
}

.kv-featured-guide {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    overflow: hidden;
    background: var(--kv-green-dark);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(15, 61, 46, 0.18);
}

.kv-featured-image {
    min-height: 500px;
    background: #dfece5;
}

.kv-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kv-featured-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at center,
            rgba(212, 167, 44, 0.27),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #2a7255,
            #123e30
        );
}

.kv-featured-placeholder span {
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    color: var(--kv-white);
    font-size: 14px;
    font-weight: 800;
}

.kv-featured-content {
    padding: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
}

.kv-featured-content .kv-section-label {
    color: var(--kv-gold);
}

.kv-featured-content h2 {
    margin-bottom: 18px;
    color: var(--kv-white);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -1.3px;
}

.kv-featured-meta {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 700;
}

.kv-featured-excerpt {
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.75;
}

.kv-primary-button {
    align-self: flex-start;
    min-height: 52px;
    padding: 13px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--kv-gold);
    color: #1f2f28;
    font-weight: 900;
}

.kv-primary-button:hover {
    background: #e0b940;
}

/* Brand cards */

.kv-brand-section {
    background: var(--kv-background);
}

.kv-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.kv-brand-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: var(--kv-white);
    border: 1px solid var(--kv-border);
    border-radius: 20px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.kv-brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--kv-shadow);
}

.kv-brand-rank {
    position: absolute;
    top: 23px;
    right: 25px;
    color: #d4dbd7;
    font-size: 24px;
    font-weight: 900;
}

.kv-brand-logo-placeholder {
    width: 65px;
    height: 65px;
    margin-bottom: 27px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--kv-green-dark);
    color: var(--kv-gold);
    font-family: Georgia, serif;
    font-size: 29px;
    font-weight: 900;
}

.kv-brand-card h3 {
    margin-bottom: 10px;
    color: var(--kv-green-dark);
    font-size: 22px;
}

.kv-brand-card p {
    flex: 1;
    color: var(--kv-muted);
}

/* Learning center */

.kv-learning-section {
    background: var(--kv-white);
}

.kv-learning-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.kv-learning-card {
    position: relative;
    min-height: 275px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #f7fbf9,
            #edf6f1
        );
    border: 1px solid #dceae2;
    border-radius: 20px;
}

.kv-learning-number {
    margin-bottom: 42px;
    color: rgba(23, 107, 74, 0.26);
    font-size: 38px;
    font-weight: 900;
}

.kv-learning-card h3 {
    margin-bottom: 12px;
    color: var(--kv-green-dark);
    font-size: 22px;
}

.kv-learning-card p {
    flex: 1;
    color: var(--kv-muted);
}

/* Latest */

.kv-latest-section {
    background: var(--kv-background);
}

.kv-text-link {
    color: var(--kv-green);
    font-weight: 800;
}

/* Newsletter */

.kv-newsletter-section {
    padding: 20px 0 100px;
    background: var(--kv-background);
}

.kv-newsletter-box {
    padding: 55px 60px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 50px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(212, 167, 44, 0.23),
            transparent 35%
        ),
        var(--kv-green-dark);
    color: rgba(255, 255, 255, 0.76);
}

.kv-newsletter-box h2 {
    max-width: 680px;
    margin-bottom: 12px;
    color: var(--kv-white);
    font-size: clamp(29px, 4vw, 43px);
    line-height: 1.15;
}

.kv-newsletter-box .kv-section-label {
    color: var(--kv-gold);
}

.kv-newsletter-form {
    padding: 7px;
    display: flex;
    background: var(--kv-white);
    border-radius: 14px;
}

.kv-newsletter-form input {
    width: 100%;
    min-height: 53px;
    padding: 0 16px;
    border: 0;
    outline: 0;
    font: inherit;
    background: transparent;
}

.kv-newsletter-form button {
    min-width: 135px;
    border: 0;
    border-radius: 10px;
    background: var(--kv-gold);
    color: #26342e;
    font-weight: 900;
}

/* Screen-reader utility */

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Homepage responsive */

@media (max-width: 1100px) {
    .kv-hero-grid {
        grid-template-columns: 1fr;
    }

    .kv-hero-content {
        text-align: center;
    }

    .kv-hero-description,
    .kv-hero-search {
        margin-right: auto;
        margin-left: auto;
    }

    .kv-hero-stats {
        justify-content: center;
    }

    .kv-hero-visual {
        min-height: 460px;
    }

    .kv-color-grid,
    .kv-family-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kv-featured-guide {
        grid-template-columns: 1fr;
    }

    .kv-featured-image,
    .kv-featured-placeholder {
        min-height: 400px;
    }

    .kv-brand-grid,
    .kv-learning-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .kv-home-section {
        padding: 68px 0;
    }

    .kv-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .kv-hero {
        padding: 70px 0 80px;
    }

    .kv-hero-content h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .kv-hero-search {
        flex-direction: column;
        border-radius: 16px;
    }

    .kv-hero-search input,
    .kv-hero-search button {
        width: 100%;
    }

    .kv-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .kv-hero-visual {
        min-height: 380px;
    }

    .kv-hero-badge {
        width: 235px;
        height: 235px;
    }

    .kv-hero-badge span {
        font-size: 54px;
    }

    .kv-orbit-one {
        width: 305px;
        height: 305px;
    }

    .kv-orbit-two {
        width: 360px;
        height: 360px;
    }

    .kv-floating-card {
        font-size: 11px;
    }

    .kv-color-grid,
    .kv-family-grid,
    .kv-brand-grid,
    .kv-learning-grid {
        grid-template-columns: 1fr;
    }

    .kv-color-card {
        min-height: 270px;
    }

    .kv-featured-content {
        padding: 38px 28px;
    }

    .kv-newsletter-box {
        padding: 40px 28px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kv-newsletter-form {
        flex-direction: column;
    }

    .kv-newsletter-form button {
        min-height: 52px;
    }
}
/* =========================================================
   Standard pages and articles
========================================================= */

.kv-content-page,
.kv-single-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 58px;
    background: var(--kv-white);
    border: 1px solid var(--kv-border);
    border-radius: 24px;
    box-shadow: var(--kv-shadow);
}

.kv-entry-header {
    margin-bottom: 34px;
}

.kv-entry-category {
    margin-bottom: 12px;
    color: var(--kv-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.kv-entry-title {
    color: var(--kv-green-dark);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.kv-entry-meta {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    color: var(--kv-muted);
    font-size: 14px;
}

.kv-single-featured-image {
    margin: 0 0 40px;
    overflow: hidden;
    border-radius: 20px;
}

.kv-single-featured-image img {
    width: 100%;
}

.kv-entry-content {
    font-size: 18px;
}

.kv-entry-content > * + * {
    margin-top: 24px;
}

.kv-entry-content h2,
.kv-entry-content h3,
.kv-entry-content h4 {
    color: var(--kv-green-dark);
    line-height: 1.25;
}

.kv-entry-content h2 {
    margin-top: 52px;
    font-size: 34px;
}

.kv-entry-content h3 {
    margin-top: 38px;
    font-size: 27px;
}

.kv-entry-content ul,
.kv-entry-content ol {
    padding-left: 24px;
}

.kv-entry-content ul {
    list-style: disc;
}

.kv-entry-content ol {
    list-style: decimal;
}

.kv-entry-content a {
    color: var(--kv-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.kv-entry-content blockquote {
    padding: 24px 28px;
    border-left: 5px solid var(--kv-gold);
    background: var(--kv-green-light);
    border-radius: 0 14px 14px 0;
}

.kv-entry-content table {
    width: 100%;
    border-collapse: collapse;
}

.kv-entry-content th,
.kv-entry-content td {
    padding: 14px;
    border: 1px solid var(--kv-border);
    text-align: left;
}

.kv-entry-content th {
    background: var(--kv-green-dark);
    color: var(--kv-white);
}

.kv-entry-footer {
    margin-top: 45px;
    padding-top: 28px;
    border-top: 1px solid var(--kv-border);
}

.kv-entry-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.kv-entry-tags a {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--kv-green-light);
    color: var(--kv-green);
    font-size: 13px;
    font-weight: 700;
}

.kv-post-navigation {
    max-width: 900px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.kv-post-navigation a {
    color: var(--kv-green);
    font-weight: 800;
}

.kv-archive-header {
    max-width: 780px;
    margin-bottom: 45px;
}

.kv-archive-description {
    margin-top: 18px;
    color: var(--kv-muted);
    font-size: 17px;
}

/* 404 page */

.kv-error-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 75px 45px;
    text-align: center;
    background: var(--kv-white);
    border: 1px solid var(--kv-border);
    border-radius: 26px;
    box-shadow: var(--kv-shadow);
}

.kv-error-code {
    color: var(--kv-green-light);
    font-size: clamp(95px, 18vw, 180px);
    font-weight: 900;
    line-height: 0.8;
}

.kv-error-page h1 {
    margin-bottom: 18px;
    color: var(--kv-green-dark);
    font-size: clamp(34px, 5vw, 52px);
}

.kv-error-page > p:not(.kv-error-code):not(.kv-section-label) {
    max-width: 580px;
    margin: 0 auto;
    color: var(--kv-muted);
}

.kv-error-page .search-form {
    max-width: 580px;
    margin: 32px auto 0;
    display: flex;
    gap: 10px;
}

.kv-error-page .search-field {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--kv-border);
    border-radius: 11px;
    font: inherit;
}

.kv-error-page .search-submit {
    min-width: 110px;
    border: 0;
    border-radius: 11px;
    background: var(--kv-green);
    color: var(--kv-white);
    font-weight: 800;
}

.kv-error-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.kv-secondary-button {
    min-height: 52px;
    padding: 13px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--kv-green);
    border-radius: 999px;
    color: var(--kv-green);
    font-weight: 900;
}

.kv-secondary-button:hover {
    background: var(--kv-green-light);
}

@media (max-width: 700px) {
    .kv-content-page,
    .kv-single-article {
        padding: 32px 22px;
    }

    .kv-entry-content {
        font-size: 17px;
    }

    .kv-post-navigation {
        flex-direction: column;
    }

    .kv-error-page {
        padding: 55px 22px;
    }

    .kv-error-page .search-form {
        flex-direction: column;
    }

    .kv-error-page .search-submit {
        min-height: 52px;
    }
}
/* =========================================================
   Premium Header
========================================================= */

.kv-header {
    position: relative;
    z-index: 200;
}

.kv-topbar {
    background: #06452f;
    color: #ffffff;
    font-size: 12px;
}

.kv-topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.kv-top-message {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

.kv-top-navigation {
    margin-left: auto;
}

.kv-top-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.kv-top-menu a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
}

.kv-top-menu a:hover {
    color: #d6b545;
}

.kv-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kv-social-links a {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.kv-social-links a:hover {
    color: #d6b545;
}

/* Main navigation */

.kv-main-header {
    position: sticky;
    top: 0;
    z-index: 210;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e8ece9;
    box-shadow: 0 4px 18px rgba(15, 61, 46, 0.05);
    backdrop-filter: blur(12px);
}

.admin-bar .kv-main-header {
    top: 32px;
}

.kv-main-header-inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 38px;
}

.kv-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.kv-brand-mark {
    position: relative;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    border-radius: 70% 15% 70% 15%;
    background: linear-gradient(145deg, #77b82a, #3d8e18);
    box-shadow: 0 5px 14px rgba(61, 142, 24, 0.22);
}

.kv-brand-leaf {
    color: #ffffff;
    font-size: 17px;
    transform: rotate(15deg);
}

.kv-brand-name {
    display: inline-flex;
    align-items: center;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1;
}

.kv-brand-name-green {
    color: #4f9624;
}

.kv-brand-name-dark {
    color: #131a17;
}

.kv-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.kv-brand .custom-logo {
    width: auto;
    max-width: 260px;
    max-height: 54px;
}

/* Desktop menu */

.kv-navigation {
    justify-self: center;
}

.kv-primary-menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.kv-primary-menu > li {
    position: relative;
}

.kv-primary-menu > li > a {
    min-height: 76px;
    display: inline-flex;
    align-items: center;
    color: #141b18;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.kv-primary-menu > li.menu-item-has-children > a::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.kv-primary-menu > li > a:hover,
.kv-primary-menu > li.current-menu-item > a,
.kv-primary-menu > li.current-menu-ancestor > a {
    color: #176b4a;
}

.kv-primary-menu > li > a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: #176b4a;
    transition: transform 0.22s ease;
}

.kv-primary-menu > li:hover > a::before,
.kv-primary-menu > li.current-menu-item > a::before,
.kv-primary-menu > li.current-menu-ancestor > a::before {
    transform: scaleX(1);
}

/* Dropdowns */

.kv-primary-menu .sub-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: -22px;
    width: 235px;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    background: #ffffff;
    border: 1px solid #e3e9e5;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(15, 61, 46, 0.13);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.kv-primary-menu li:hover > .sub-menu,
.kv-primary-menu li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.kv-primary-menu .sub-menu li + li {
    margin-top: 3px;
}

.kv-primary-menu .sub-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 9px;
    color: #26332d;
    font-size: 13px;
    font-weight: 700;
}

.kv-primary-menu .sub-menu a:hover {
    background: #edf6f1;
    color: #176b4a;
}

/* Search button */

.kv-header-search-button {
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.kv-header-search-button:hover {
    background: #edf6f1;
}

.kv-header-search-button span {
    position: relative;
    width: 17px;
    height: 17px;
    display: block;
    border: 2px solid #111814;
    border-radius: 50%;
}

.kv-header-search-button span::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 7px;
    height: 2px;
    transform: rotate(45deg);
    border-radius: 2px;
    background: #111814;
}

/* Search panel */

.kv-header-search-panel {
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    z-index: 190;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    background: #ffffff;
    border-bottom: 1px solid #e3e9e5;
    box-shadow: 0 18px 34px rgba(15, 61, 46, 0.1);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease,
        padding 0.2s ease;
}

.kv-header-search-panel.is-open {
    padding: 22px 0;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.kv-header-search-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 7px;
    display: flex;
    gap: 10px;
    border: 1px solid #dce5df;
    border-radius: 13px;
    background: #f8fbf9;
}

.kv-header-search-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #1f2933;
    font: inherit;
}

.kv-header-search-form button {
    min-width: 115px;
    border: 0;
    border-radius: 9px;
    background: #176b4a;
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.kv-header-search-form button:hover {
    background: #0f3d2e;
}

/* Mobile menu button */

.kv-mobile-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    cursor: pointer;
}

.kv-mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #162019;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.kv-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.kv-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.kv-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Header responsive */

@media (max-width: 980px) {
    .kv-topbar-inner {
        justify-content: center;
    }

    .kv-top-navigation,
    .kv-social-links {
        display: none;
    }

    .kv-main-header-inner {
        min-height: 70px;
        grid-template-columns: 1fr auto auto;
        gap: 10px;
    }

    .kv-mobile-toggle {
        display: inline-flex;
    }

    .kv-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        padding: 15px 20px 24px;
        background: #ffffff;
        border-bottom: 1px solid #e3e9e5;
        box-shadow: 0 20px 35px rgba(15, 61, 46, 0.12);
    }

    .kv-navigation.is-open {
        display: block;
    }

    .kv-primary-menu {
        display: block;
    }

    .kv-primary-menu > li + li {
        border-top: 1px solid #eef2ef;
    }

    .kv-primary-menu > li > a {
        width: 100%;
        min-height: 52px;
        justify-content: space-between;
    }

    .kv-primary-menu > li > a::before {
        display: none;
    }

    .kv-primary-menu .sub-menu {
        position: static;
        width: auto;
        padding: 0 0 12px 14px;
        visibility: visible;
        opacity: 1;
        transform: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .kv-primary-menu .sub-menu a {
        padding: 9px 12px;
    }

    .kv-header-search-panel {
        top: 100%;
    }
}

@media (max-width: 600px) {
    .admin-bar .kv-main-header {
        top: 46px;
    }

    .kv-top-message {
        text-align: center;
        font-size: 11px;
    }

    .kv-brand-name {
        font-size: 19px;
    }

    .kv-brand-mark {
        width: 31px;
        height: 31px;
    }

    .kv-header-search-form {
        flex-direction: column;
    }

    .kv-header-search-form button {
        min-height: 48px;
    }
}
/* =========================================================
   Final Homepage Hero
========================================================= */

.kv-hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #f6faf7;
}

.kv-hero-grid {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
}

.kv-hero-content {
    position: relative;
    z-index: 2;
    padding: 72px 54px 68px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kv-eyebrow {
    margin-bottom: 18px;
    color: #176b4a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.kv-hero-content h1 {
    max-width: 690px;
    margin: 0;
    color: #0f3d2e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.2vw, 76px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -2.5px;
}

.kv-hero-content h1 span {
    display: block;
    color: #0f3d2e;
}

.kv-hero-description {
    max-width: 650px;
    margin-top: 24px;
    color: #4f5f57;
    font-size: 18px;
    line-height: 1.75;
}

.kv-hero-stats {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kv-hero-stats div {
    min-height: 76px;
    padding: 0 18px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #dce6df;
}

.kv-hero-stats div:last-child {
    border-right: 0;
}

.kv-hero-stats strong {
    color: #0f3d2e;
    font-size: 17px;
    line-height: 1.2;
}

.kv-hero-stats span {
    margin-top: 5px;
    color: #68766f;
    font-size: 12px;
    line-height: 1.35;
}

.kv-hero-search {
    max-width: 700px;
    margin-top: 30px;
    padding: 6px;
    display: flex;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #dfe8e2;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.kv-hero-search input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #1d2a24;
    font: inherit;
}

.kv-hero-search input::placeholder {
    color: #8b9691;
}

.kv-hero-search button {
    min-width: 112px;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 7px;
    background: #0f5a3d;
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.kv-hero-search button:hover {
    background: #0b4430;
}

.kv-hero-image {
    position: relative;
    min-height: 610px;
    overflow: hidden;
}

.kv-hero-image::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 26%;
    background: linear-gradient(
        90deg,
        #f6faf7 0%,
        rgba(246, 250, 247, 0.78) 42%,
        rgba(246, 250, 247, 0) 100%
    );
}

.kv-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    object-position: center right;
}

@media (max-width: 1050px) {
    .kv-hero-grid {
        grid-template-columns: 1fr;
    }

    .kv-hero-content {
        padding: 64px 0 42px;
        text-align: center;
    }

    .kv-hero-description,
    .kv-hero-search {
        margin-right: auto;
        margin-left: auto;
    }

    .kv-hero-stats {
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .kv-hero-image {
        min-height: 440px;
    }

    .kv-hero-image img {
        min-height: 440px;
    }

    .kv-hero-image::before {
        top: 0;
        right: 0;
        bottom: auto;
        width: 100%;
        height: 24%;
        background: linear-gradient(
            180deg,
            #f6faf7 0%,
            rgba(246, 250, 247, 0) 100%
        );
    }
}

@media (max-width: 700px) {
    .kv-hero-content {
        padding: 48px 0 34px;
    }

    .kv-hero-content h1 {
        font-size: 46px;
        letter-spacing: -1.7px;
    }

    .kv-hero-description {
        font-size: 16px;
    }

    .kv-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .kv-hero-stats div {
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid #dce6df;
    }

    .kv-hero-search {
        flex-direction: column;
    }

    .kv-hero-search button {
        width: 100%;
    }

    .kv-hero-image,
    .kv-hero-image img {
        min-height: 320px;
    }
}
/* =========================================================
   Exact Reference Header Override
========================================================= */

.kv-header {
    position: relative;
    z-index: 500;
    width: 100%;
}

/* Top green bar */

.kv-topbar {
    height: 30px;
    background: #064b2f;
    color: #ffffff;
}

.kv-topbar-inner {
    min-height: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.kv-top-message {
    margin: 0;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.kv-top-navigation {
    margin-left: auto;
}

.kv-top-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kv-top-menu li {
    margin: 0;
}

.kv-top-menu a {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.kv-top-menu a:hover {
    color: #dcefcf;
}

.kv-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 2px;
}

.kv-social-links a {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

/* Main white header */

.kv-main-header {
    position: relative;
    top: auto;
    z-index: 510;
    height: 64px;
    background: #ffffff;
    border-bottom: 1px solid #e7ebe8;
    box-shadow: none;
    backdrop-filter: none;
}

.admin-bar .kv-main-header {
    top: auto;
}

.kv-main-header-inner {
    min-height: 64px;
    height: 64px;
    display: grid;
    grid-template-columns: 270px 1fr 42px;
    align-items: center;
    gap: 24px;
}

/* Logo */

.kv-brand {
    min-width: 0;
}

.kv-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.kv-brand-mark {
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    border-radius: 70% 18% 70% 18%;
    background: #63a91f;
    box-shadow: none;
    transform: rotate(-17deg);
}

.kv-brand-leaf {
    font-size: 13px;
}

.kv-brand-name {
    display: inline-flex;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.7px;
    white-space: nowrap;
}

.kv-brand-name-green {
    color: #559b20;
}

.kv-brand-name-dark {
    color: #151b18;
}

.kv-brand .custom-logo {
    width: auto;
    max-width: 245px;
    max-height: 42px;
}

/* Main navigation */

.kv-navigation {
    justify-self: center;
}

.kv-primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 43px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kv-primary-menu > li {
    position: relative;
    margin: 0;
}

.kv-primary-menu > li > a {
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111714;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    text-decoration: none;
}

.kv-primary-menu > li.menu-item-has-children > a::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-left: 8px;
    border-right: 1.4px solid currentColor;
    border-bottom: 1.4px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.kv-primary-menu > li > a::before {
    display: none;
}

.kv-primary-menu > li > a:hover,
.kv-primary-menu > li.current-menu-item > a,
.kv-primary-menu > li.current-menu-ancestor > a {
    color: #0d5b36;
}

/* Dropdown */

.kv-primary-menu .sub-menu {
    position: absolute;
    top: 58px;
    left: -16px;
    width: 215px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    background: #ffffff;
    border: 1px solid #e4e9e5;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(12, 62, 39, 0.12);
    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease;
}

.kv-primary-menu li:hover > .sub-menu,
.kv-primary-menu li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.kv-primary-menu .sub-menu a {
    display: block;
    padding: 10px 11px;
    color: #243028;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
}

.kv-primary-menu .sub-menu a:hover {
    background: #f1f7f3;
    color: #0d5b36;
}

/* Search icon */

.kv-header-search-button {
    width: 36px;
    height: 36px;
    justify-self: end;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.kv-header-search-button:hover {
    background: transparent;
}

.kv-header-search-button span {
    width: 15px;
    height: 15px;
    border: 1.8px solid #111714;
}

.kv-header-search-button span::after {
    right: -6px;
    bottom: -4px;
    width: 7px;
    height: 1.8px;
    background: #111714;
}

/* Search dropdown */

.kv-header-search-panel {
    top: 94px;
    border-bottom: 1px solid #e7ebe8;
    box-shadow: 0 10px 22px rgba(15, 61, 46, 0.08);
}

.kv-header-search-panel.is-open {
    padding: 16px 0;
}

.kv-header-search-form {
    max-width: 930px;
    padding: 5px;
    border-radius: 7px;
    background: #ffffff;
}

.kv-header-search-form input {
    min-height: 42px;
    font-size: 13px;
}

.kv-header-search-form button {
    min-width: 105px;
    border-radius: 5px;
    background: #064b2f;
    font-size: 12px;
    text-transform: uppercase;
}

/* Mobile */

@media (max-width: 980px) {
    .kv-topbar {
        height: 30px;
    }

    .kv-topbar-inner {
        height: 30px;
    }

    .kv-top-navigation,
    .kv-social-links {
        display: none;
    }

    .kv-main-header {
        height: 64px;
    }

    .kv-main-header-inner {
        height: 64px;
        min-height: 64px;
        grid-template-columns: 1fr auto auto;
        gap: 8px;
    }

    .kv-mobile-toggle {
        display: inline-flex;
    }

    .kv-navigation {
        position: absolute;
        top: 64px;
        right: 0;
        left: 0;
        display: none;
        padding: 10px 18px 18px;
        background: #ffffff;
        border-bottom: 1px solid #e5eae6;
        box-shadow: 0 14px 24px rgba(12, 62, 39, 0.1);
    }

    .kv-navigation.is-open {
        display: block;
    }

    .kv-primary-menu {
        display: block;
    }

    .kv-primary-menu > li + li {
        border-top: 1px solid #eef1ef;
    }

    .kv-primary-menu > li > a {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        font-size: 12px;
    }

    .kv-primary-menu .sub-menu {
        position: static;
        width: auto;
        padding: 0 0 8px 12px;
        visibility: visible;
        opacity: 1;
        transform: none;
        border: 0;
        box-shadow: none;
    }

    .kv-header-search-panel {
        top: 94px;
    }
}

@media (max-width: 600px) {
    .kv-top-message {
        width: 100%;
        text-align: center;
        font-size: 10px;
    }

    .kv-brand-name {
        font-size: 18px;
    }

    .kv-brand-mark {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
    }
}
/* =========================================================
   Reference Header — Final Override
========================================================= */

.kv-header {
	position: relative;
	z-index: 999;
	width: 100%;
}

/* Top bar */

.kv-reference-topbar {
	height: 31px;
	background: #064d31;
	color: #ffffff;
}

.kv-reference-topbar-inner {
	height: 31px;
	min-height: 31px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.kv-reference-message {
	margin: 0;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
}

.kv-reference-topbar-right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 22px;
}

.kv-reference-secondary-nav {
	display: flex;
	align-items: center;
	gap: 23px;
}

.kv-reference-secondary-nav a {
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
}

.kv-reference-secondary-nav a:hover {
	color: #d9ebd1;
}

.kv-reference-socials {
	display: flex;
	align-items: center;
	gap: 13px;
}

.kv-reference-socials a {
	width: 14px;
	height: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
}

.kv-reference-socials svg {
	width: 12px;
	height: 12px;
	display: block;
	fill: currentColor;
}

/* Main white navigation */

.kv-reference-main-header {
	height: 64px;
	background: #ffffff;
	border-bottom: 1px solid #e4e8e5;
	box-shadow: none;
}

.kv-reference-main-inner {
	height: 64px;
	min-height: 64px;
	display: grid;
	grid-template-columns: 280px 1fr 34px;
	align-items: center;
	gap: 28px;
}

/* Brand */

.kv-reference-brand-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
}

.kv-reference-logo-mark {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.kv-reference-logo-mark svg {
	width: 30px;
	height: 30px;
	display: block;
}

.kv-reference-logo-mark svg path:first-child {
	fill: #68ae20;
}

.kv-reference-logo-vein {
	fill: none;
	stroke: #ffffff;
	stroke-width: 3;
	stroke-linecap: round;
}

.kv-reference-brand-text {
	display: inline-flex;
	align-items: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 21px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.6px;
	white-space: nowrap;
}

.kv-reference-brand-text span {
	color: #5b9d21;
}

.kv-reference-brand-text strong {
	color: #171c19;
	font-weight: 900;
}

/* Main navigation */

.kv-reference-navigation {
	justify-self: center;
}

.kv-reference-primary-menu {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 42px;
	list-style: none;
}

.kv-reference-primary-menu > li {
	position: relative;
	margin: 0;
}

.kv-reference-primary-menu > li > a {
	min-height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #111714;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	text-decoration: none;
}

.kv-reference-primary-menu > li.menu-item-has-children > a::after {
	content: "";
	width: 5px;
	height: 5px;
	margin-left: 8px;
	border-right: 1.3px solid currentColor;
	border-bottom: 1.3px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}

.kv-reference-primary-menu > li > a::before {
	display: none;
}

.kv-reference-primary-menu > li > a:hover,
.kv-reference-primary-menu > li.current-menu-item > a,
.kv-reference-primary-menu > li.current-menu-ancestor > a {
	color: #0b5c36;
}

/* Dropdown menu */

.kv-reference-primary-menu .sub-menu {
	position: absolute;
	top: 58px;
	left: -18px;
	width: 218px;
	margin: 0;
	padding: 10px;
	visibility: hidden;
	opacity: 0;
	transform: translateY(8px);
	background: #ffffff;
	border: 1px solid #e3e8e4;
	border-radius: 8px;
	box-shadow: 0 14px 30px rgba(14, 62, 40, 0.12);
	list-style: none;
	transition:
		opacity 0.18s ease,
		visibility 0.18s ease,
		transform 0.18s ease;
}

.kv-reference-primary-menu li:hover > .sub-menu,
.kv-reference-primary-menu li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.kv-reference-primary-menu .sub-menu li {
	margin: 0;
}

.kv-reference-primary-menu .sub-menu li + li {
	margin-top: 2px;
}

.kv-reference-primary-menu .sub-menu a {
	display: block;
	padding: 10px 11px;
	color: #243027;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 6px;
}

.kv-reference-primary-menu .sub-menu a:hover {
	background: #f0f6f2;
	color: #0b5c36;
}

/* Search icon */

.kv-reference-search-button {
	width: 34px;
	height: 34px;
	justify-self: end;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.kv-reference-search-button:hover {
	background: transparent;
}

.kv-reference-search-button span {
	position: relative;
	width: 15px;
	height: 15px;
	display: block;
	border: 1.8px solid #101613;
	border-radius: 50%;
}

.kv-reference-search-button span::after {
	content: "";
	position: absolute;
	right: -6px;
	bottom: -4px;
	width: 7px;
	height: 1.8px;
	transform: rotate(45deg);
	border-radius: 2px;
	background: #101613;
}

/* Search panel */

.kv-header-search-panel {
	top: 95px;
}

.kv-header-search-panel.is-open {
	padding: 16px 0;
}

.kv-header-search-form {
	max-width: 930px;
	padding: 5px;
	border-radius: 7px;
}

.kv-header-search-form input {
	min-height: 42px;
	font-size: 13px;
}

.kv-header-search-form button {
	min-width: 105px;
	min-height: 42px;
	border-radius: 5px;
	background: #064d31;
	font-size: 12px;
	text-transform: uppercase;
}

/* Responsive */

@media (max-width: 980px) {
	.kv-reference-topbar-right {
		display: none;
	}

	.kv-reference-topbar-inner {
		justify-content: center;
	}

	.kv-reference-message {
		text-align: center;
	}

	.kv-reference-main-inner {
		grid-template-columns: 1fr auto auto;
		gap: 8px;
	}

	.kv-mobile-toggle {
		display: inline-flex;
	}

	.kv-reference-navigation {
		position: absolute;
		top: 95px;
		right: 0;
		left: 0;
		display: none;
		padding: 10px 18px 18px;
		background: #ffffff;
		border-bottom: 1px solid #e4e8e5;
		box-shadow: 0 14px 24px rgba(14, 62, 40, 0.1);
	}

	.kv-reference-navigation.is-open {
		display: block;
	}

	.kv-reference-primary-menu {
		display: block;
	}

	.kv-reference-primary-menu > li + li {
		border-top: 1px solid #eef2ef;
	}

	.kv-reference-primary-menu > li > a {
		width: 100%;
		min-height: 48px;
		justify-content: space-between;
	}

	.kv-reference-primary-menu .sub-menu {
		position: static;
		width: auto;
		padding: 0 0 8px 12px;
		visibility: visible;
		opacity: 1;
		transform: none;
		border: 0;
		box-shadow: none;
	}
}

@media (max-width: 600px) {
	.kv-reference-brand-text {
		font-size: 18px;
	}

	.kv-reference-logo-mark,
	.kv-reference-logo-mark svg {
		width: 27px;
		height: 27px;
	}

	.kv-reference-main-inner {
		grid-template-columns: 1fr auto auto;
	}
}
/* =========================================================
   Browse by Strain Color + Family
========================================================= */

.kv-browse-section {
	background: #ffffff;
	padding: 24px 0 28px;
}

.kv-browse-group + .kv-browse-group {
	margin-top: 20px;
}

.kv-browse-title {
	margin: 0 0 12px;
	color: #101613;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

/* Color cards */

.kv-color-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}

.kv-color-card {
	min-height: 64px;
	padding: 0 24px;
	display: flex;
	align-items: center;
	gap: 14px;
	background: #ffffff;
	border: 1px solid #e6e9e7;
	border-radius: 5px;
	box-shadow: 0 3px 10px rgba(14, 61, 40, 0.05);
	text-decoration: none;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		border-color 0.18s ease;
}

.kv-color-card:hover {
	transform: translateY(-2px);
	border-color: #d7ded9;
	box-shadow: 0 8px 18px rgba(14, 61, 40, 0.09);
}

.kv-color-card strong {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.kv-color-icon {
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #ffffff;
	font-size: 15px;
	transform: rotate(-15deg);
}

.kv-color-red .kv-color-icon {
	background: #b8242a;
}

.kv-color-red strong {
	color: #b8242a;
}

.kv-color-green .kv-color-icon {
	background: #3c9417;
}

.kv-color-green strong {
	color: #3c9417;
}

.kv-color-white .kv-color-icon {
	background: #d9dcda;
}

.kv-color-white strong {
	color: #7f8581;
}

.kv-color-gold .kv-color-icon {
	background: #c89205;
}

.kv-color-gold strong {
	color: #c89205;
}

.kv-color-yellow .kv-color-icon {
	background: #f7b500;
}

.kv-color-yellow strong {
	color: #f1ad00;
}

/* Family row */

.kv-family-grid {
	display: grid;
	grid-template-columns: repeat(10, minmax(0, 1fr)) 72px;
	border: 1px solid #e5e9e6;
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 3px 10px rgba(14, 61, 40, 0.04);
}

.kv-family-card {
	min-height: 78px;
	padding: 10px 6px 9px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	color: #111714;
	background: #ffffff;
	border-right: 1px solid #e7ebe8;
	text-align: center;
	text-decoration: none;
	transition:
		background 0.18s ease,
		color 0.18s ease;
}

.kv-family-card:hover {
	background: #f5faf6;
	color: #0c5a36;
}

.kv-family-card strong {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.15;
	text-transform: uppercase;
}

.kv-family-icon {
	color: #215f39;
	font-size: 31px;
	line-height: 1;
}

.kv-view-all-card {
	border-right: 0;
	background: #064d31;
	color: #ffffff;
}

.kv-view-all-card:hover {
	background: #053f29;
	color: #ffffff;
}

.kv-view-arrow {
	font-size: 23px;
	font-weight: 800;
	line-height: 0.7;
}

.kv-view-all-card strong {
	max-width: 42px;
	font-size: 11px;
	line-height: 1.15;
}

/* Responsive */

@media (max-width: 1050px) {
	.kv-color-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.kv-family-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.kv-family-card {
		border-bottom: 1px solid #e7ebe8;
	}

	.kv-view-all-card {
		grid-column: span 5;
		min-height: 58px;
		flex-direction: row;
	}
}

@media (max-width: 700px) {
	.kv-browse-section {
		padding: 20px 0 24px;
	}

	.kv-color-grid {
		grid-template-columns: 1fr;
	}

	.kv-color-card {
		min-height: 58px;
	}

	.kv-family-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kv-view-all-card {
		grid-column: span 2;
	}
}
/* =========================================================
   Strain Color Cards — Reference Match
========================================================= */

.kv-color-grid {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 12px !important;
}

.kv-color-card {
	min-height: 70px !important;
	padding: 0 24px !important;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 16px !important;
	overflow: hidden !important;
	background: #ffffff !important;
	border: 1px solid #e4e8e5 !important;
	border-radius: 5px !important;
	box-shadow: 0 3px 10px rgba(14, 61, 40, 0.05) !important;
	text-align: left !important;
}

.kv-color-card::before,
.kv-color-card::after {
	display: none !important;
	content: none !important;
}

.kv-color-icon {
	position: static !important;
	width: 38px !important;
	height: 38px !important;
	flex: 0 0 38px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	border-radius: 50% !important;
	color: #ffffff !important;
	font-size: 0 !important;
	transform: none !important;
}

.kv-color-icon::before {
	content: "";
	width: 15px;
	height: 20px;
	display: block;
	border: 2px solid #ffffff;
	border-radius: 70% 15% 70% 15%;
	transform: rotate(28deg);
}

.kv-color-icon::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 15px;
	background: #ffffff;
	transform: rotate(42deg);
}

.kv-color-card strong {
	position: static !important;
	margin: 0 !important;
	color: inherit;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}

.kv-color-red strong {
	color: #b8242a !important;
}

.kv-color-green strong {
	color: #3b9417 !important;
}

.kv-color-white strong {
	color: #777d79 !important;
}

.kv-color-gold strong {
	color: #c68f00 !important;
}

.kv-color-yellow strong {
	color: #f2ad00 !important;
}

.kv-color-red .kv-color-icon {
	background: #b8242a !important;
}

.kv-color-green .kv-color-icon {
	background: #3b9417 !important;
}

.kv-color-white .kv-color-icon {
	background: #d9dcda !important;
}

.kv-color-gold .kv-color-icon {
	background: #c68f00 !important;
}

.kv-color-yellow .kv-color-icon {
	background: #f7b500 !important;
}

@media (max-width: 900px) {
	.kv-color-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 520px) {
	.kv-color-grid {
		grid-template-columns: 1fr !important;
	}
}
/* =========================================================
   Strain Color Cards — Reference Match
========================================================= */

.kv-color-grid {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 12px !important;
}

.kv-color-card {
	min-height: 70px !important;
	padding: 0 24px !important;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 16px !important;
	overflow: hidden !important;
	background: #ffffff !important;
	border: 1px solid #e4e8e5 !important;
	border-radius: 5px !important;
	box-shadow: 0 3px 10px rgba(14, 61, 40, 0.05) !important;
	text-align: left !important;
}

.kv-color-card::before,
.kv-color-card::after {
	display: none !important;
	content: none !important;
}

.kv-color-icon {
	position: static !important;
	width: 38px !important;
	height: 38px !important;
	flex: 0 0 38px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	border-radius: 50% !important;
	color: #ffffff !important;
	font-size: 0 !important;
	transform: none !important;
}

.kv-color-icon::before {
	content: "";
	width: 15px;
	height: 20px;
	display: block;
	border: 2px solid #ffffff;
	border-radius: 70% 15% 70% 15%;
	transform: rotate(28deg);
}

.kv-color-icon::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 15px;
	background: #ffffff;
	transform: rotate(42deg);
}

.kv-color-card strong {
	position: static !important;
	margin: 0 !important;
	color: inherit;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}

.kv-color-red strong {
	color: #b8242a !important;
}

.kv-color-green strong {
	color: #3b9417 !important;
}

.kv-color-white strong {
	color: #777d79 !important;
}

.kv-color-gold strong {
	color: #c68f00 !important;
}

.kv-color-yellow strong {
	color: #f2ad00 !important;
}

.kv-color-red .kv-color-icon {
	background: #b8242a !important;
}

.kv-color-green .kv-color-icon {
	background: #3b9417 !important;
}

.kv-color-white .kv-color-icon {
	background: #d9dcda !important;
}

.kv-color-gold .kv-color-icon {
	background: #c68f00 !important;
}

.kv-color-yellow .kv-color-icon {
	background: #f7b500 !important;
}

@media (max-width: 900px) {
	.kv-color-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 520px) {
	.kv-color-grid {
		grid-template-columns: 1fr !important;
	}
}
/* =========================================================
   Strain Family Cards — Premium Refinement
========================================================= */

.kv-family-grid {
	border: 1px solid #e3e9e5 !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 16px rgba(10, 67, 42, 0.06) !important;
	background: #ffffff !important;
	overflow: hidden !important;
}

.kv-family-card {
	position: relative !important;
	min-height: 92px !important;
	padding: 12px 8px 11px !important;
	gap: 8px !important;
	background:
		linear-gradient(
			180deg,
			#ffffff 0%,
			#fbfdfb 100%
		) !important;
	border-right: 1px solid #e7ece8 !important;
	transition:
		transform 0.18s ease,
		background 0.18s ease,
		box-shadow 0.18s ease,
		color 0.18s ease !important;
}

.kv-family-card:hover {
	z-index: 2 !important;
	transform: translateY(-3px) !important;
	background: #f4faf6 !important;
	box-shadow: 0 8px 18px rgba(9, 78, 46, 0.12) !important;
	color: #075534 !important;
}

.kv-family-icon {
	position: relative !important;
	width: 50px !important;
	height: 50px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 50% !important;
	background: #eaf4ee !important;
	color: transparent !important;
	font-size: 0 !important;
}

/* Three-leaf icon */

.kv-family-icon::before,
.kv-family-icon::after {
	content: "" !important;
	position: absolute !important;
	width: 13px !important;
	height: 21px !important;
	border: 2px solid #12623d !important;
	border-radius: 70% 18% 70% 18% !important;
	background: transparent !important;
}

.kv-family-icon::before {
	left: 11px !important;
	top: 15px !important;
	transform: rotate(-38deg) !important;
}

.kv-family-icon::after {
	right: 11px !important;
	top: 15px !important;
	transform: rotate(38deg) scaleX(-1) !important;
}

.kv-family-card .kv-family-icon {
	box-shadow: inset 0 0 0 1px rgba(18, 98, 61, 0.03) !important;
}

.kv-family-card .kv-family-icon span {
	display: none !important;
}

/* Centre leaf and stem */

.kv-family-card::before {
	content: "" !important;
	position: absolute !important;
	top: 29px !important;
	left: 50% !important;
	width: 12px !important;
	height: 23px !important;
	border: 2px solid #12623d !important;
	border-radius: 70% 18% 70% 18% !important;
	transform: translateX(-50%) rotate(45deg) !important;
	pointer-events: none !important;
}

.kv-family-card::after {
	content: "" !important;
	position: absolute !important;
	top: 47px !important;
	left: 50% !important;
	width: 2px !important;
	height: 10px !important;
	background: #12623d !important;
	transform: translateX(-50%) !important;
	pointer-events: none !important;
}

.kv-family-card strong {
	margin-top: 2px !important;
	color: #101713 !important;
	font-size: 10px !important;
	font-weight: 900 !important;
	letter-spacing: 0.15px !important;
	line-height: 1.15 !important;
}

.kv-family-card:hover strong {
	color: #075534 !important;
}

/* View All card */

.kv-view-all-card {
	min-height: 92px !important;
	background:
		linear-gradient(
			145deg,
			#075d39 0%,
			#03492d 100%
		) !important;
	color: #ffffff !important;
	border-right: 0 !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
}

.kv-view-all-card::before,
.kv-view-all-card::after {
	display: none !important;
	content: none !important;
}

.kv-view-all-card:hover {
	background:
		linear-gradient(
			145deg,
			#087044 0%,
			#054d31 100%
		) !important;
	color: #ffffff !important;
}

.kv-view-all-card strong {
	color: #ffffff !important;
	font-size: 11px !important;
	line-height: 1.1 !important;
}

.kv-view-arrow {
	width: 28px !important;
	height: 28px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.12) !important;
	color: #ffffff !important;
	font-size: 20px !important;
	line-height: 1 !important;
}
/* =========================================================
   Featured Guide + Top Brand Reviews
========================================================= */

.kv-featured-brands-section {
	padding: 24px 0 28px;
	background: #ffffff;
}

.kv-featured-brands-grid {
	display: grid;
	grid-template-columns: minmax(340px, 39%) minmax(0, 61%);
	gap: 18px;
	align-items: start;
}

.kv-featured-block-title {
	margin: 0 0 10px;
	color: #101613;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

/* Featured guide */

.kv-featured-guide-card {
	position: relative;
	height: 330px;
	display: block;
	overflow: hidden;
	border-radius: 6px;
	background: #123c2a;
	box-shadow: 0 5px 16px rgba(10, 48, 31, 0.13);
	color: #ffffff;
	text-decoration: none;
}

.kv-featured-guide-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	transition: transform 0.35s ease;
}

.kv-featured-guide-card:hover img {
	transform: scale(1.035);
}

.kv-featured-guide-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(2, 22, 14, 0.03) 20%,
			rgba(2, 22, 14, 0.38) 58%,
			rgba(2, 20, 13, 0.92) 100%
		);
}

.kv-featured-guide-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 7px 10px;
	border-radius: 4px;
	background: #075834;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.kv-featured-guide-content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding: 22px 20px 16px;
	color: #ffffff;
}

.kv-featured-guide-content h3 {
	max-width: 330px;
	margin: 0;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.45px;
}

.kv-featured-guide-content p {
	max-width: 340px;
	margin: 12px 0 17px;
	color: rgba(255, 255, 255, 0.93);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 1.55;
}

.kv-featured-guide-footer {
	display: grid;
	grid-template-columns: auto auto 1fr;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.92);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}

.kv-featured-guide-footer span + span {
	padding-left: 10px;
	border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.kv-featured-guide-footer strong {
	justify-self: end;
	min-width: 104px;
	padding: 13px 15px;
	border-radius: 5px;
	background: #19773d;
	color: #ffffff;
	font-size: 11px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

/* Brand reviews */

.kv-brand-reviews-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.kv-brand-reviews-heading a {
	margin-bottom: 10px;
	color: #075834;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-decoration: none;
}

.kv-brand-reviews-grid {
	height: 330px;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid #e5e9e6;
	border-radius: 6px;
	background: #ffffff;
	box-shadow: 0 4px 14px rgba(10, 48, 31, 0.06);
}

.kv-brand-review-card {
	min-width: 0;
	padding: 20px 10px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #111714;
	background: #ffffff;
	border-right: 1px solid #e6eae7;
	text-align: center;
	text-decoration: none;
	transition:
		background 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease;
}

.kv-brand-review-card:last-child {
	border-right: 0;
}

.kv-brand-review-card:hover {
	z-index: 2;
	transform: translateY(-3px);
	background: #f8fbf9;
	box-shadow: 0 8px 20px rgba(8, 70, 42, 0.11);
}

.kv-brand-logo {
	height: 78px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111111;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 900;
	line-height: 0.8;
	text-align: center;
}

.kv-brand-logo-happy {
	width: 73px;
	height: 73px;
	margin: 2px auto 3px;
	border-radius: 50%;
	background: #111111;
	color: #ffffff;
	font-size: 17px;
	line-height: 0.88;
}

.kv-brand-logo-mit {
	font-size: 35px;
	line-height: 0.75;
}

.kv-brand-logo-kraken {
	width: 72px;
	height: 72px;
	margin: 3px auto;
	border: 4px double #111111;
	border-radius: 50%;
	font-size: 13px;
}

.kv-brand-logo-super {
	color: #398e18;
	font-size: 13px;
	line-height: 1.1;
}

.kv-brand-logo-kingdom {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 37px;
}

.kv-brand-review-card h3 {
	min-height: 35px;
	margin: 13px 0 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111714;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.kv-brand-review-card p {
	min-height: 66px;
	margin: 0;
	color: #313a35;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 1.55;
}

.kv-brand-rating {
	margin-top: auto;
	padding-top: 13px;
	color: #111714;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 700;
}

.kv-brand-rating span {
	color: #075834;
}

.kv-brand-review-card > strong {
	margin-top: 14px;
	color: #075834;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

/* Responsive */

@media (max-width: 1100px) {
	.kv-featured-brands-grid {
		grid-template-columns: 1fr;
	}

	.kv-brand-reviews-grid {
		height: auto;
		min-height: 310px;
	}

	.kv-featured-guide-card {
		height: 370px;
	}
}

@media (max-width: 760px) {
	.kv-brand-reviews-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		overflow: visible;
	}

	.kv-brand-review-card {
		min-height: 300px;
		border-bottom: 1px solid #e6eae7;
	}

	.kv-featured-guide-card {
		height: 410px;
	}

	.kv-featured-guide-footer {
		grid-template-columns: 1fr;
	}

	.kv-featured-guide-footer span + span {
		padding-left: 0;
		border-left: 0;
	}

	.kv-featured-guide-footer strong {
		justify-self: start;
		margin-top: 5px;
	}
}
/* Remove gap between strain family and featured section */

.kv-browse-section {
	padding-bottom: 8px !important;
}

.kv-featured-brands-section {
	padding-top: 8px !important;
	margin-top: 0 !important;
}

.kv-family-group {
	margin-bottom: 0 !important;
}

.kv-family-grid {
	margin-bottom: 0 !important;
}
/* =========================================================
   Knowledge Strip
========================================================= */

.kv-knowledge-strip{
    padding:22px 0 30px;
    background:#fff;
}

.kv-knowledge-grid{
    display:grid;
    grid-template-columns:repeat(8,minmax(0,1fr));
    border:1px solid #e7ebe8;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 18px rgba(10,50,30,.05);
}

.kv-knowledge-card{
    min-height:170px;
    padding:22px 12px 18px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;
    text-decoration:none;
    color:#111;
    border-right:1px solid #ecefed;
    transition:.2s;
}

.kv-knowledge-card:last-child{
    border-right:0;
}

.kv-knowledge-card:hover{
    background:#f7fbf8;
    transform:translateY(-3px);
}

.kv-knowledge-icon{
    width:56px;
    height:56px;
    margin-bottom:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#0a5b36;
}

.kv-knowledge-card h3{
    margin:0 0 10px;
    color:#143b24;
    font-size:15px;
    font-weight:800;
    line-height:1.35;
}

.kv-knowledge-card p{
    margin:0;
    color:#555;
    font-size:13px;
    line-height:1.55;
}

@media(max-width:1100px){

.kv-knowledge-grid{
grid-template-columns:repeat(4,1fr);
}

}

@media(max-width:700px){

.kv-knowledge-grid{
grid-template-columns:repeat(2,1fr);
}

}
/* Close gap between featured block and knowledge strip */

.kv-featured-brands-section {
	padding-bottom: 8px !important;
	margin-bottom: 0 !important;
}

.kv-knowledge-strip {
	padding-top: 8px !important;
	margin-top: 0 !important;
}
/* =========================================================
   Latest Articles
========================================================= */

.kv-latest-reference-section{
padding:28px 0 40px;
background:#fff;
}

.kv-latest-reference-heading{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:18px;
}

.kv-latest-reference-heading h2{
margin:0;
font-size:18px;
font-weight:800;
text-transform:uppercase;
color:#111;
}

.kv-latest-reference-heading a{
font-size:14px;
font-weight:700;
color:#0d5f35;
text-decoration:none;
}

.kv-latest-reference-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
}

.kv-latest-reference-card{
background:#fff;
border:1px solid #e7ebe8;
border-radius:10px;
overflow:hidden;
text-decoration:none;
color:#111;
transition:.2s;
box-shadow:0 3px 12px rgba(0,0,0,.05);
}

.kv-latest-reference-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 25px rgba(0,0,0,.10);
}

.kv-latest-reference-card img{
width:100%;
height:170px;
object-fit:cover;
display:block;
}

.kv-latest-reference-content{
padding:18px;
}

.kv-latest-reference-category{
display:block;
font-size:11px;
font-weight:800;
text-transform:uppercase;
color:#0d5f35;
margin-bottom:10px;
}

.kv-latest-reference-content h3{
margin:0 0 14px;
font-size:18px;
font-weight:800;
line-height:1.35;
}

.kv-latest-reference-content p{
margin:0;
font-size:13px;
color:#666;
}

@media(max-width:1100px){

.kv-latest-reference-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.kv-latest-reference-grid{
grid-template-columns:1fr;
}

}
/* =========================================================
   Kratom Verdict Premium Footer
========================================================= */

.kv-premium-footer {
	margin: 0;
	background:
		linear-gradient(
			135deg,
			#003d25 0%,
			#00562f 50%,
			#003b24 100%
		);
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
}

.kv-premium-footer .kv-container {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.kv-premium-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.85fr 0.85fr 1.15fr;
	gap: 0;
	padding: 52px 0 46px;
}

.kv-footer-column {
	min-width: 0;
	padding: 0 38px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.kv-footer-column:first-child {
	padding-left: 0;
	border-left: 0;
}

.kv-footer-column:last-child {
	padding-right: 0;
}

.kv-footer-column h2 {
	margin: 0 0 22px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0;
}

.kv-footer-column p {
	margin: 0;
	color: rgba(255, 255, 255, 0.95);
	font-size: 14px;
	line-height: 1.75;
}

/* Newsletter */

.kv-footer-newsletter > p {
	max-width: 310px;
	margin-bottom: 24px;
}

/* ===========================
   PREMIUM FOOTER SOCIAL ICONS
=========================== */

.kv-footer-socials{
    display:flex;
    gap:18px;
    margin-top:24px;
}

.kv-footer-socials a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.25s;
}

.kv-footer-socials a:hover{
    background:#2d8a3e;
    transform:translateY(-2px);
}

.kv-footer-socials svg{
    width:20px;
    height:20px;
    fill:#ffffff;
    display:block;
}