/* ==========================================================================
   MaxxOut Kratom — Home Page (new design)
   Scoped under .mx-scope so nothing here leaks onto other pages/themes.
   ========================================================================== */

.mx-scope {
    --mx-dark: #0c1712;
    --mx-dark-2: #14261c;
    --mx-dark-3: #17291f;
    --mx-green: #6cc24a;
    --mx-green-2: #4a9e34;
    --mx-pink: #c23bd6;
    --mx-pink-2: #9a2fc4;
    --mx-purple: #7a3fe0;
    --mx-purple-2: #5b2bb8;
    --mx-cream: #f4f1ea;
    --mx-cream-2: #ece7db;
    --mx-ink: #14261c;
    --mx-muted: #6b7570;
    --mx-line: #e3ded1;
    --mx-white: #ffffff;
    --mx-radius: 18px;
    --mx-radius-sm: 10px;
    --mx-shadow: 0 14px 34px rgba(12, 23, 18, .16);
    --mx-shadow-sm: 0 6px 16px rgba(12, 23, 18, .10);
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: var(--mx-ink);
}

.mx-scope * {
    box-sizing: border-box;
}

.mx-page-wrap {
    overflow-x: hidden;
}

.mx-scope .container-fluid {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

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

.mx-scope a {
    text-decoration: none;
}

.mx-scope section {
    position: relative;
}

/* -------------------------------------------------------------------- */
/* Shared bits */
/* -------------------------------------------------------------------- */

.mx-eyebrow-pill {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mx-pink), var(--mx-purple));
    color: var(--mx-white);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .02em;
    border: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.mx-btn-primary {
    background: linear-gradient(180deg, #7a3fe0, #5b1f9e);
    color: var(--mx-white);
    box-shadow: 0 10px 24px rgba(90, 40, 170, .4);
}

.mx-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(90, 40, 170, .5);
    color: var(--mx-white);
}

.mx-btn-green {
    background: #8a9d3c;
    color: var(--mx-white);
    font-size: 13px;
    padding: 13px 20px;
    letter-spacing: .06em;
    text-transform: uppercase;
    width: 100%;
}

.mx-btn-green:hover {
    background: #7c8e35;
    color: var(--mx-white);
    transform: translateY(-1px);
}

.mx-section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-bottom: 50px;
}

.mx-section-head .mx-rule-line {
    flex: 1 1 0;
    max-width: 320px;
    height: 1px;
    background: var(--mx-ink);
    opacity: .5;
}

.mx-h2 {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .02em;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}

.mx-star-row {
    color: #f4b400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* -------------------------------------------------------------------- */
/* HEADER (new glass pill nav)                                          */
/* -------------------------------------------------------------------- */

.mx-header-new {
    background: transparent;
    padding: 22px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.mx-header-new.mx-header-solid {
    position: relative;
    background: var(--mx-dark);
}

.mx-header-inner {
    display: flex;
    align-items: center;
    gap: 130px;
}

.mx-nav-pill {
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    padding: 20px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex: 1 1 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .5);
}

.mx-logo {
    flex: 0 0 auto;
}

.mx-logo img {
    height: 152px;
    width: auto;
    display: block;
}

.mx-nav-toggle {
    background: none;
    border: none;
    color: var(--mx-white);
    font-size: 22px;
    line-height: 1;
    padding: 4px 8px;
}

.mx-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mx-nav-link {
    color: var(--mx-white);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .03em;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mx-nav-link:hover {
    color: var(--mx-green);
}

.mx-nav-item {
    position: relative;
}

.mx-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    max-height: 340px;
    overflow-y: auto;
    background: var(--mx-white);
    border-radius: 14px;
    box-shadow: var(--mx-shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 60;
}

.mx-dropdown-panel--right {
    left: auto;
    right: 0;
}

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

.mx-dropdown-panel a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--mx-ink);
    font-size: 14px;
    font-weight: 600;
}

.mx-dropdown-panel a:hover {
    background: var(--mx-cream);
}

.mx-nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.mx-nav-action {
    color: var(--mx-white);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.mx-nav-action:hover {
    color: var(--mx-green);
}

.mx-nav-action i {
    font-size: 17px;
}

@media (max-width: 991px) {
    .mx-header-inner {
        gap: 16px;
    }

    .mx-logo img {
        height: 100px;
    }

    .mx-nav-pill {
        border-radius: 999px;
        justify-content: flex-end;
    }

    .mx-nav-links {
        display: none;
    }

    .mx-nav-actions {
        gap: 16px;
    }

    .mx-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* -------------------------------------------------------------------- */
/* MOBILE DRAWER (right side off-canvas)                                */
/* -------------------------------------------------------------------- */

.mx-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 16, 11, .6);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 190;
}

.mx-mobile-overlay.mx-open {
    opacity: 1;
    visibility: visible;
}

.mx-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(320px, 86vw);
    height: 100vh;
    background: var(--mx-dark);
    box-shadow: -14px 0 34px rgba(0, 0, 0, .4);
    z-index: 200;
    transition: right .3s ease;
    padding: 24px 22px;
    overflow-y: auto;
}

.mx-mobile-drawer.mx-open {
    right: 0;
}

.mx-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mx-mobile-drawer-title {
    color: var(--mx-white);
    font-weight: 800;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.mx-mobile-drawer-close {
    background: rgba(255, 255, 255, .08);
    border: none;
    color: var(--mx-white);
    font-size: 18px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mx-mobile-drawer-links {
    display: flex;
    flex-direction: column;
}

.mx-mobile-drawer-links > a,
.mx-mobile-drawer-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: var(--mx-white);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-align: left;
}

.mx-mobile-drawer-sub {
    display: none;
    flex-direction: column;
    padding: 6px 0 6px 14px;
}

.mx-mobile-drawer-item.mx-open .mx-mobile-drawer-sub {
    display: flex;
}

.mx-mobile-drawer-item.mx-open .mx-mobile-drawer-trigger i {
    transform: rotate(180deg);
}

.mx-mobile-drawer-sub a {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    padding: 10px 4px;
}

@media (min-width: 992px) {
    .mx-mobile-drawer,
    .mx-mobile-overlay {
        display: none;
    }
}

/* -------------------------------------------------------------------- */
/* HERO                                                                  */
/* -------------------------------------------------------------------- */

.mx-hero {
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    min-height: clamp(480px, 62vw, 760px);
    display: flex;
    align-items: center;
    padding: clamp(215px, 23vw, 260px) 0 250px;
    overflow: hidden;
}

.mx-hero-copy {
    color: var(--mx-white);
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.mx-hero-text-panel {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: rgba(6, 16, 11, .55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px 90px 22px 22px;
    padding: 36px 54px 40px 36px;
    margin-bottom: 26px;
}

.mx-hero-text-panel .mx-discover-text {
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 800;
    color: var(--mx-white);
    letter-spacing: .01em;
    margin: 0 0 4px;
    line-height: 1.05;
}

.mx-hero-text-panel .mx-hero-title {
    font-size: clamp(30px, 4.6vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
    color: var(--mx-white);
}

.mx-hero-title .mx-brand {
    background: linear-gradient(90deg, #8ee06a, var(--mx-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mx-eyebrow-pill.mx-pill-olive {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px 36px;
    background: linear-gradient(180deg, #9cb247, #7f9432);
    box-shadow: 0 10px 22px rgba(90, 110, 30, .3);
}

.mx-hero-cta {
    display: flex;
    justify-content: center;
}

/* -------------------------------------------------------------------- */
/* BANNER STRIP                                                         */
/* -------------------------------------------------------------------- */

.mx-banner-strip {
    background: #091809;
    padding: 55px 0 70px;
    overflow: hidden;
}

.mx-torn-deco {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 3;
    pointer-events: none;
    display: block;
}

.mx-torn-deco--hero-bottom {
    bottom: 0;
}

.mx-torn-deco--category-top {
    top: 0;
}

.mx-torn-deco--category-bottom {
    bottom: 0;
}

.mx-banner-strip .mx-strip-inner {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.mx-banner-strip .mx-strip-imgs img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.mx-banner-strip .mx-strip-caption {
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .45);
    color: var(--mx-white);
    padding: 16px 40px;
    border-radius: 999px;
    font-weight: 800;
    font-size: clamp(15px, 2.2vw, 24px);
    letter-spacing: .04em;
    text-align: center;
    white-space: nowrap;
    max-width: 92%;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}

/* -------------------------------------------------------------------- */
/* SHOP BY CATEGORY                                                      */
/* -------------------------------------------------------------------- */

.mx-shop-category {
    background-color: var(--mx-cream);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 210px 0 210px;
    overflow: hidden;
}

.mx-cat-card {
    display: block;
    text-align: center;
    color: var(--mx-ink);
}

.mx-cat-card .mx-cat-photo {
    position: relative;
    border-radius: var(--mx-radius);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: var(--mx-shadow);
}

.mx-cat-card .mx-cat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.mx-cat-card:hover .mx-cat-photo img {
    transform: scale(1.04);
}

.mx-cat-label {
    display: inline-block;
    width: 100%;
    max-width: 260px;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3f5a2c 0%, #14210f 100%);
    color: var(--mx-white);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: var(--mx-shadow-sm);
}

/* -------------------------------------------------------------------- */
/* BEST SELLERS                                                         */
/* -------------------------------------------------------------------- */

.mx-bestsellers {
    background: #091809;
    padding: 90px 0 80px;
    overflow: hidden;
}

.mx-bs-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mx-bs-heading-col {
    flex: 0 0 auto;
    width: 280px;
    padding-left: 20px;
}

.mx-bs-heading {
    color: var(--mx-white);
    font-size: clamp(38px, 4.6vw, 58px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.mx-bs-heading .mx-accent {
    color: var(--mx-green);
}

.mx-bs-sub {
    color: rgba(255, 255, 255, .8);
    font-size: 17px;
    line-height: 1.4;
    max-width: 240px;
}

.mx-bs-cards-row {
    flex: 1 1 0;
    display: flex;
    gap: 20px;
    min-width: 0;
}

.mx-product-card {
    display: block;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--mx-radius);
    padding: 24px 18px;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, background .2s ease;
}

.mx-product-card:hover {
    color: inherit;
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .09);
}

.mx-product-card .mx-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 16px;
}

.mx-product-card .mx-product-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--mx-white);
    margin-bottom: 2px;
    min-height: 40px;
}

.mx-product-card .mx-product-price {
    font-weight: 800;
    font-size: 16px;
    color: var(--mx-white);
    margin-bottom: 16px;
}

/* -------------------------------------------------------------------- */
/* TRUST STRIP                                                          */
/* -------------------------------------------------------------------- */

.mx-trust-strip {
    background: #0c1a0c;
    padding: 46px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mx-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 10px 14px;
}

.mx-trust-item .mx-trust-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    color: var(--mx-green);
}

.mx-trust-item .mx-trust-icon svg,
.mx-trust-item .mx-trust-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mx-trust-item .mx-trust-text {
    min-width: 0;
}

.mx-trust-item h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--mx-white);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0 0 4px;
}

.mx-trust-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.4;
    margin: 0;
}

/* -------------------------------------------------------------------- */
/* DESTINATION                                                          */
/* -------------------------------------------------------------------- */

.mx-destination {
    background: var(--mx-dark-2);
    padding: 70px 0;
    color: var(--mx-white);
}

.mx-destination-copy {
    max-width: 620px;
}

.mx-destination-copy h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 16px;
}

.mx-destination-copy h3 .mx-accent {
    color: var(--mx-green);
}

.mx-destination-copy p {
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.7;
}

.mx-destination-media {
    border-radius: var(--mx-radius);
    overflow: hidden;
    box-shadow: var(--mx-shadow);
}

/* -------------------------------------------------------------------- */
/* KAVA + KRATOM SHOTS BANNER                                           */
/* -------------------------------------------------------------------- */

.mx-kava-banner {
    background: #091809;
    padding: 55px 0 70px;
    overflow: hidden;
}

.mx-kava-banner .mx-kava-inner {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.mx-kava-banner .mx-kava-row {
    border-radius: 20px;
    overflow: hidden;
    height: clamp(220px, 32vw, 420px);
}

.mx-kava-banner .mx-kava-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mx-kava-caption {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .45);
    color: var(--mx-white);
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 800;
    font-size: clamp(15px, 2.2vw, 24px);
    letter-spacing: .06em;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}

/* -------------------------------------------------------------------- */
/* COMMUNITY / TESTIMONIALS                                             */
/* -------------------------------------------------------------------- */

.mx-community {
    background: #091809;
    padding: 90px 0 90px;
    overflow: hidden;
}

.mx-comm-layout {
    display: flex;
    align-items: center;
    gap: 32px;
}

.mx-community-head {
    flex: 0 0 auto;
    width: 260px;
}

.mx-community-head h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--mx-white);
    margin: 0 0 16px;
}

.mx-community-head h2 .mx-accent {
    display: block;
    color: var(--mx-green);
}

.mx-community-head p {
    color: rgba(255, 255, 255, .8);
    font-size: 17px;
    line-height: 1.4;
    margin: 0;
}

.mx-comm-cards-row {
    flex: 1 1 0;
    display: flex;
    gap: 20px;
    min-width: 0;
}

.mx-testimonial-card {
    flex: 1 1 0;
    min-width: 0;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--mx-radius);
    padding: 26px 24px;
}

.mx-testimonial-card h5 {
    font-weight: 800;
    font-size: 17px;
    color: var(--mx-white);
    margin: 6px 0 10px;
}

.mx-testimonial-card p.mx-quote {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.mx-testimonial-card .mx-author {
    font-weight: 800;
    font-size: 15px;
    color: var(--mx-white);
    margin-bottom: 4px;
}

.mx-testimonial-card .mx-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 600;
}

.mx-testimonial-card .mx-verified-star {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--mx-green);
    color: var(--mx-white);
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mx-community-media {
    flex: 0 0 auto;
    width: 130px;
}

.mx-community-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------------------------------------- */
/* STATS STRIP                                                          */
/* -------------------------------------------------------------------- */

.mx-stats {
    background: var(--mx-cream-2);
    padding: 0;
    overflow: hidden;
}

.mx-stats .row {
    align-items: center;
}

.mx-stats-media {
    height: 240px;
    overflow: hidden;
}

.mx-stats-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: inline-block;
}

.mx-stats-media--split {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.mx-stats-media--split img {
    flex: 1 1 0;
    width: auto;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    box-sizing: border-box;
}

.mx-stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 18px;
    padding: 0 20px;
    height: 240px;
}

.mx-stat-block {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    min-width: 150px;
}

.mx-stat-block .mx-stat-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin: 0;
    color: var(--mx-green-2);
}

.mx-stat-block .mx-stat-icon svg,
.mx-stat-block .mx-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mx-stat-block .mx-stat-text {
    min-width: 0;
}

.mx-stat-block .mx-stat-num {
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--mx-ink);
    line-height: 1;
    margin-bottom: 4px;
}

.mx-stat-block .mx-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--mx-ink);
    font-weight: 800;
    white-space: nowrap;
}

/* -------------------------------------------------------------------- */
/* RESPONSIVE                                                           */
/* -------------------------------------------------------------------- */

@media (max-width: 991px) {
    .mx-hero {
        min-height: 560px;
        text-align: center;
        align-items: flex-end;
        padding-bottom: 50px;
    }

    .mx-hero-copy {
        max-width: none;
        margin: 0 auto;
    }

    .mx-destination-copy {
        max-width: none;
        text-align: center;
        margin: 0 auto 30px;
    }

    .mx-stats-inner {
        padding: 30px 16px;
    }

    .mx-bs-cards-row {
        flex-wrap: wrap;
    }

    .mx-product-card {
        flex: 1 1 calc(33.333% - 14px);
    }

    .mx-comm-layout {
        flex-wrap: wrap;
    }

    .mx-community-head {
        width: 100%;
        margin-bottom: 20px;
    }

    .mx-community-media {
        display: none;
    }
}

@media (max-width: 767px) {
    .mx-shop-category,
    .mx-bestsellers,
    .mx-destination,
    .mx-community {
        padding: 50px 0 40px;
    }

    .mx-h2 {
        white-space: normal;
        font-size: clamp(22px, 6vw, 30px);
    }

    .mx-section-head {
        gap: 14px;
    }

    .mx-section-head .mx-rule-line {
        max-width: 40px;
    }

    .mx-cat-card {
        margin-bottom: 30px;
    }

    .mx-bs-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .mx-bs-heading-col {
        width: 100%;
        padding-left: 0;
        margin-bottom: 10px;
    }

    .mx-bs-sub {
        max-width: none;
        margin-bottom: 24px;
    }

    .mx-bs-cards-row {
        width: 100%;
        flex-wrap: wrap;
    }

    .mx-product-card {
        flex: 1 1 calc(50% - 10px);
        margin-bottom: 18px;
    }

    .mx-kava-banner .mx-kava-row {
        height: 200px;
    }

    .mx-comm-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .mx-community-head {
        width: 100%;
        margin-bottom: 10px;
    }

    .mx-comm-cards-row {
        width: 100%;
        flex-wrap: wrap;
    }

    .mx-testimonial-card {
        flex: 1 1 100%;
        margin-bottom: 18px;
    }

    .mx-community-media {
        display: none;
    }

    .mx-stats-media {
        display: none;
    }

    .mx-stats-inner {
        height: auto;
    }
}

/* -------------------------------------------------------------------- */
/* FOOTER (new)                                                         */
/* -------------------------------------------------------------------- */

.mx-footer-new {
    background: #345E33;
    padding: 60px 0 40px;
}

.mx-footer-top {
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
}

.mx-footer-col--intro {
    flex: 1 1 0;
    min-width: 0;
}

.mx-footer-col--legal {
    flex: 0 0 auto;
    width: 46%;
}

.mx-footer-logo img {
    height: 130px;
    width: auto;
    display: block;
    margin-bottom: 22px;
}

.mx-footer-text {
    color: rgba(255, 255, 255, .85);
    font-size: 19px;
    line-height: 1.6;
    margin: 0 0 18px;
}

.mx-footer-email {
    color: var(--mx-white);
    text-decoration: underline;
    font-weight: 600;
}

.mx-footer-legal-card {
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: var(--mx-radius);
    padding: 28px 32px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
}

.mx-footer-legal-card h4 {
    color: var(--mx-white);
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 18px 0 6px;
}

.mx-footer-legal-card h4:first-child {
    margin-top: 0;
}

.mx-footer-legal-card p {
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    margin: 0;
}

.mx-footer-ban {
    text-align: center;
    padding: 22px 0;
}

.mx-footer-ban p {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    line-height: 1.7;
    max-width: 1400px;
    margin: 0 auto;
}

.mx-footer-payments {
    text-align: center;
    padding-bottom: 22px;
}

.mx-footer-payments i {
    font-size: 40px;
    color: var(--mx-white);
    margin: 0 10px;
    display: inline-block;
}

.mx-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 22px;
}

.mx-footer-bottom p {
    color: rgba(255, 255, 255, .85);
    font-size: 17px;
    margin: 0 0 8px;
}

.mx-footer-bottom p:last-child {
    margin-bottom: 0;
}

.mx-footer-bottom p.mx-footer-address {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
}

.mx-footer-links a {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

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

.mx-footer-links .mx-footer-sep {
    color: rgba(255, 255, 255, .4);
    margin: 0 8px;
}

@media (max-width: 991px) {
    .mx-footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .mx-footer-col--legal {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .mx-footer-new {
        padding: 44px 0 30px;
    }

    .mx-footer-legal-card {
        padding: 22px 20px;
    }

    .mx-footer-text {
        font-size: 15px;
    }
}