:root {
    --bg: #070707;
    --bg-soft: #111111;
    --panel: rgba(20, 20, 20, 0.92);
    --panel-strong: #171717;
    --text: #f5f1ec;
    --muted: #b4aca5;
    --heading-gold: #d4af37;
    --line: rgba(255, 255, 255, 0.08);
    --brand: rgb(27, 46, 32);
    --brand-deep: rgb(25, 42, 29);
    --brand-soft: rgba(27, 46, 32, 0.28);
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    --radius-lg: 28px;
    --radius-md: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(69, 118, 83, 0.22), transparent 28%),
        radial-gradient(circle at top right, rgba(42, 79, 54, 0.18), transparent 24%),
        linear-gradient(180deg, #060606 0%, #090909 35%, #0d0d0d 100%);
    font-family: "Barlow", sans-serif;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .hero-title,
body .inner-hero h1,
body .section-heading h2,
body .cta-banner h2,
body .about-card h2,
body .contact-info-card h2,
body .product-card h2 {
    color: var(--heading-gold) !important;
}

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

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

.main-shell {
    padding-top: 92px;
}

.site-navbar {
    padding: 1rem 0;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.site-navbar.is-scrolled {
    padding: 0.7rem 0;
    background: rgba(8, 8, 8, 0.94);
    border-color: var(--line);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark__icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(27, 46, 32), rgb(25, 42, 29));
    color: #fff;
    font-family: "Teko", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 36px rgba(27, 46, 32, 0.38);
}

.brand-mark__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-mark__text strong,
.brand-mark__text small {
    color: #fff;
}

.brand-mark__text strong {
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.brand-mark__text small {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.nav-link {
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff !important;
}

.nav-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-badge {
    min-width: 1.45rem;
    height: 1.45rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(146, 199, 161, 0.18);
    color: #d6eadb;
    font-size: 0.78rem;
    font-weight: 700;
}

.btn-energy {
    color: #fff;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, rgb(27, 46, 32), rgb(25, 42, 29));
    box-shadow: 0 16px 30px rgba(27, 46, 32, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-energy:hover,
.btn-energy:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(27, 46, 32, 0.45);
}

.nav-item--cta {
    margin-left: 0.45rem;
}

.btn-distributor {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #1a1205;
    border: 1px solid rgba(255, 224, 145, 0.35);
    border-radius: 999px;
    background: linear-gradient(135deg, #f1c76a, #d6902f);
    box-shadow: 0 18px 34px rgba(171, 106, 18, 0.28);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-distributor:hover,
.btn-distributor:focus {
    color: #120c03;
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 24px 42px rgba(171, 106, 18, 0.36);
}

.btn-distributor__icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 24, 8, 0.18);
    color: #fff8e2;
    font-size: 0.9rem;
    box-shadow: inset 0 0 0 1px rgba(255, 248, 226, 0.22);
}

.hero-section,
.inner-hero {
    position: relative;
    overflow: hidden;
}

.hero-section {
    padding: 5.5rem 0 4rem;
}

.inner-hero {
    padding: 4.5rem 0 2rem;
}

.inner-hero--compact {
    padding-bottom: 1rem;
}

.hero-bg-glow {
    position: absolute;
    inset: auto;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.75;
}

.hero-bg-glow--left {
    top: 3rem;
    left: -8rem;
    background: rgba(69, 118, 83, 0.24);
}

.hero-bg-glow--right {
    right: -8rem;
    bottom: -4rem;
    background: rgba(42, 79, 54, 0.22);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: #92c7a1;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-title,
.inner-hero h1,
.section-heading h2,
.cta-banner h2,
.about-card h2,
.contact-info-card h2,
.product-card h2 {
    font-family: "Teko", sans-serif;
    line-height: 0.95;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    margin-bottom: 1rem;
}

.hero-copy,
.inner-hero p,
.section-heading p,
.tagline-panel p,
.product-card p,
.info-card p,
.about-card p,
.company-panel p,
.contact-card p,
.contact-info-card p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stats div {
    min-width: 120px;
}

.hero-stats strong {
    display: block;
    font-size: 2rem;
    color: #fff;
}

.hero-stats span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.hero-carousel,
.tagline-panel,
.info-card,
.product-card,
.about-card,
.company-panel,
.contact-card,
.contact-info-card,
.cta-banner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            rgba(15, 61, 46, 0.52) 0%,
            rgba(8, 8, 8, 0.34) 42%,
            rgba(212, 175, 55, 0.22) 100%
        ),
        radial-gradient(
            circle at top left,
            rgba(212, 175, 55, 0.18) 0%,
            transparent 38%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(15, 61, 46, 0.22) 0%,
            transparent 42%
        );
}

.hero-carousel .carousel-item img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next,
.hero-carousel .carousel-indicators {
    z-index: 2;
}

.shadow-energy {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.section-block {
    padding: 2.5rem 0 4.5rem;
}

.section-block--contrast {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(27, 46, 32, 0.12));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.inner-hero h1,
.cta-banner h2,
.contact-info-card h2,
.product-card h2,
.about-card h2 {
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    margin-bottom: 1rem;
}

.tagline-panel,
.company-panel,
.contact-card,
.contact-info-card,
.cta-banner {
    padding: 2rem;
}

.product-card {
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(69, 118, 83, 0.4);
}

.product-card__media {
    padding: 1.6rem 1.6rem 0;
}

.product-card__media img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
}

.product-card--tall .product-card__media img {
    height: 320px;
}

.product-card__body {
    padding: 1.5rem;
}

.product-card__body h2,
.product-card__body h3 {
    font-family: "Teko", sans-serif;
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.product-badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: #b7dec2;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 700;
}

.product-card__meta span {
    font-size: 1.25rem;
    color: #fff;
}

.product-card__meta a {
    color: #92c7a1;
}

.product-stock {
    margin-bottom: 1rem;
    color: #d2ead8;
    font-weight: 600;
}

.info-card,
.about-card {
    padding: 2rem;
    height: 100%;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
}

.cta-banner {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.company-panel img {
    width: 100%;
}

.contact-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li,
.footer-links li {
    margin-bottom: 0.9rem;
    color: var(--muted);
}

.contact-mini-banner {
    margin-top: 1.5rem;
    padding: 1.4rem;
    border-radius: var(--radius-md);
    background: rgba(27, 46, 32, 0.18);
    border: 1px solid rgba(69, 118, 83, 0.28);
}

.form-label {
    color: #fff;
    font-weight: 600;
}

.form-control {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 0.95rem 1rem;
}

.form-control:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(69, 118, 83, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(27, 46, 32, 0.22);
}

.form-help {
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-note {
    margin: 0 0 0.25rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.required-mark {
    color: #ff6b6b;
    font-weight: 700;
}

.alert-success {
    border: none;
    color: #fff;
    background: rgba(25, 135, 84, 0.18);
}

.alert-danger {
    border: none;
    color: #fff;
    background: rgba(220, 53, 69, 0.2);
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.admin-toolbar__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-table {
    margin-bottom: 0;
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.admin-table thead th {
    color: #d6eadb;
    background: rgba(27, 46, 32, 0.3);
    border-bottom: 1px solid rgba(69, 118, 83, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.admin-table tbody td {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.08);
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.015);
}

.table-description {
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.admin-thumb {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.admin-thumb--large {
    width: 140px;
    height: 140px;
}

.dashboard-stat {
    margin: 0;
    color: #fff;
    font-family: "Teko", sans-serif;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0.04em;
}

.admin-dashboard-hero {
    background:
        radial-gradient(circle at right top, rgba(69, 118, 83, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
    gap: 1.5rem;
    align-items: stretch;
}

.dashboard-hero__pulse {
    display: flex;
}

.dashboard-hero__signal {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(146, 199, 161, 0.18);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(146, 199, 161, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.dashboard-hero__signal-label {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #b7dec2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dashboard-hero__signal strong {
    display: block;
    color: #fff;
    font-family: "Teko", sans-serif;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dashboard-hero__signal small {
    display: block;
    margin-top: 0.75rem;
    color: var(--muted);
    line-height: 1.6;
}

.dashboard-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
    gap: 1.5rem;
}

.dashboard-main,
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.dashboard-kpi,
.dashboard-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.dashboard-kpi {
    padding: 1.4rem;
}

.dashboard-kpi--primary {
    background: linear-gradient(135deg, rgba(27, 46, 32, 0.9), rgba(25, 42, 29, 0.95));
    border-color: rgba(146, 199, 161, 0.18);
}

.dashboard-kpi--accent {
    background:
        radial-gradient(circle at top right, rgba(214, 173, 91, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(214, 173, 91, 0.18);
}

.dashboard-kpi--warning {
    background:
        radial-gradient(circle at top right, rgba(169, 68, 82, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(169, 68, 82, 0.2);
}

.dashboard-kpi__label {
    display: block;
    margin-bottom: 0.8rem;
    color: #b7dec2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dashboard-kpi strong {
    display: block;
    color: #fff;
    font-family: "Teko", sans-serif;
    font-size: 3.4rem;
    line-height: 1;
    letter-spacing: 0.04em;
}

.dashboard-kpi small {
    display: block;
    margin-top: 0.6rem;
    color: var(--muted);
    line-height: 1.5;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
}

.dashboard-card {
    padding: 1.5rem;
}

.dashboard-card--wide {
    grid-column: 1 / 2;
}

.dashboard-card--inventory {
    grid-column: 1 / 2;
}

.dashboard-card--actions {
    grid-column: 2 / 3;
}

.dashboard-card--actions {
    display: flex;
    flex-direction: column;
}

.dashboard-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.dashboard-card__header h2 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: 2.3rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dashboard-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(27, 46, 32, 0.24);
    color: #b7dec2;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dashboard-chart {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.75fr);
    gap: 1.4rem;
    align-items: end;
}

.dashboard-chart__stage {
    position: relative;
    min-height: 230px;
    padding: 1.5rem 1.3rem 1rem;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(146, 199, 161, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-chart__grid {
    position: absolute;
    inset: 1.1rem 1.2rem 2.6rem;
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 100% 25%;
    opacity: 0.35;
}

.dashboard-chart__bars {
    position: relative;
    z-index: 1;
    height: 190px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

.dashboard-chart__bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-chart__bar-group span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-chart__bar {
    width: 100%;
    max-width: 54px;
    min-height: 18px;
    border-radius: 18px 18px 10px 10px;
    box-shadow: 0 18px 26px rgba(0, 0, 0, 0.22);
}

.dashboard-chart__bar--revenue {
    background: linear-gradient(180deg, #f3cb70, #c57b1f);
}

.dashboard-chart__bar--orders {
    background: linear-gradient(180deg, #86d0a1, #2f7d4a);
}

.dashboard-chart__bar--products {
    background: linear-gradient(180deg, #9bc7ff, #356ab4);
}

.dashboard-chart__bar--stock {
    background: linear-gradient(180deg, #f28b95, #a94452);
}

.dashboard-chart__summary {
    display: grid;
    gap: 0.9rem;
}

.dashboard-chart__summary-item {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-chart__summary-item span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-chart__summary-item strong {
    display: block;
    margin-top: 0.35rem;
    color: #fff;
    font-family: "Teko", sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.04em;
}

.inventory-split {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.inventory-ring {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: conic-gradient(from 210deg, #4fa76a 0 58%, #d7b55e 58% 84%, #a94452 84% 100%);
    padding: 16px;
}

.inventory-ring::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: #101010;
}

.inventory-ring__inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.inventory-ring__inner strong {
    color: #fff;
    font-family: "Teko", sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.inventory-ring__inner span {
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.inventory-legend {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.inventory-legend__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.inventory-legend__item strong {
    display: block;
    color: #fff;
}

.inventory-legend__item small {
    color: var(--muted);
}

.inventory-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.inventory-dot--healthy {
    background: #4fa76a;
}

.inventory-dot--warning {
    background: #d7b55e;
}

.inventory-dot--danger {
    background: #a94452;
}

.stacked-meter {
    display: flex;
    width: 100%;
    height: 14px;
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.inventory-footnotes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.inventory-footnotes div {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.inventory-footnotes span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.inventory-footnotes strong {
    display: block;
    margin-top: 0.35rem;
    color: #fff;
}

.stacked-meter__bar {
    display: block;
    height: 100%;
}

.stacked-meter__bar--healthy {
    background: linear-gradient(135deg, #4fa76a, #3d7d51);
}

.stacked-meter__bar--warning {
    background: linear-gradient(135deg, #d7b55e, #b58d35);
}

.stacked-meter__bar--danger {
    background: linear-gradient(135deg, #a94452, #7f2f3a);
}

.dashboard-actions {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.dashboard-actions--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.orders-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.order-card__top,
.order-card__footer,
.order-card__grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-card__top,
.order-card__footer {
    align-items: center;
    justify-content: space-between;
}

.order-card__title {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: 2.1rem;
    line-height: 1;
    text-transform: uppercase;
}

.order-card__status {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.order-card__status--done {
    background: rgba(79, 167, 106, 0.18);
    color: #bce8c8;
}

.order-card__status--pending {
    background: rgba(215, 181, 94, 0.18);
    color: #f4d995;
}

.order-card__grid {
    margin: 1.15rem 0;
}

.order-card__panel,
.order-card__address {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.order-card__panel {
    flex: 1 1 180px;
}

.order-card__panel span,
.order-card__address span,
.order-card__meta span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.order-card__panel strong {
    display: block;
    margin-top: 0.35rem;
    color: #fff;
}

.order-card__address {
    margin-bottom: 1rem;
}

.order-card__address p {
    margin: 0.45rem 0 0;
    color: #fff;
    line-height: 1.7;
}

.dashboard-action {
    display: block;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.dashboard-action__icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.9rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
}

.dashboard-action--distributor {
    border-color: rgba(224, 182, 89, 0.24);
    background:
        radial-gradient(circle at top right, rgba(224, 182, 89, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(255, 241, 211, 0.05), rgba(255, 255, 255, 0.02));
}

.dashboard-action--distributor .dashboard-action__icon {
    background: linear-gradient(135deg, rgba(224, 182, 89, 0.28), rgba(130, 84, 27, 0.3));
    color: #ffe4a1;
    box-shadow: 0 14px 28px rgba(130, 84, 27, 0.18);
}

.dashboard-action:hover {
    transform: translateY(-2px);
    border-color: rgba(146, 199, 161, 0.24);
    background: rgba(27, 46, 32, 0.18);
    color: #fff;
}

.dashboard-action--distributor:hover {
    border-color: rgba(244, 208, 120, 0.45);
    background:
        radial-gradient(circle at top right, rgba(224, 182, 89, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(255, 241, 211, 0.08), rgba(130, 84, 27, 0.14));
}

.dashboard-action strong {
    display: block;
    margin-bottom: 0.4rem;
    color: #fff;
}

.dashboard-action span {
    color: var(--muted);
    line-height: 1.5;
}

.dashboard-empty {
    margin: 0;
    color: var(--muted);
}

.dashboard-card--signals .stock-bars__item {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.dashboard-card--session {
    background:
        radial-gradient(circle at top right, rgba(146, 199, 161, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.stock-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stock-bars__item {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stock-bars__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.stock-bars__meta strong {
    color: #fff;
}

.stock-bars__meta span,
.stock-bars__item small {
    color: var(--muted);
}

.stock-bars__track {
    width: 100%;
    height: 10px;
    margin-bottom: 0.55rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.stock-bars__fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, rgb(27, 46, 32), #4fa76a);
}

.session-panel {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.session-panel__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.session-panel__row span {
    color: var(--muted);
}

.session-panel__row strong {
    color: #fff;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-summary {
    margin-top: 1.5rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.checkout-items__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-items__row strong {
    display: block;
    color: #fff;
}

.checkout-items__row small {
    color: var(--muted);
}

.checkout-items__row span {
    color: #fff;
    font-weight: 700;
}

.site-footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.32);
}

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-brand h3,
.footer-title {
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand p,
.social-links a,
.footer-links a,
.footer-bottom {
    color: var(--muted);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.social-links a,
.footer-links a {
    transition: color 0.2s ease;
}

.social-links a:hover,
.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .main-shell {
        padding-top: 82px;
    }

    .site-navbar {
        background: rgba(8, 8, 8, 0.95);
    }

    .dashboard-shell,
    .dashboard-grid,
    .dashboard-overview,
    .inventory-split,
    .dashboard-hero,
    .dashboard-chart {
        grid-template-columns: 1fr;
    }

    .dashboard-card--wide,
    .dashboard-card--inventory,
    .dashboard-card--actions {
        grid-column: auto;
    }

    .inventory-ring {
        margin: 0 auto;
    }

    .cta-banner,
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-item--cta {
        margin-left: 0;
    }

    .dashboard-chart__stage {
        min-height: 210px;
    }

    .dashboard-actions--grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 4.5rem;
    }

    .tagline-panel,
    .company-panel,
    .contact-card,
    .contact-info-card,
    .cta-banner,
    .info-card,
    .about-card {
        padding: 1.4rem;
    }

    .product-card__media {
        padding: 1rem 1rem 0;
    }

    .product-card__body {
        padding: 1.2rem;
    }

    .inventory-footnotes {
        grid-template-columns: 1fr;
    }

    .dashboard-chart__bars {
        gap: 0.75rem;
    }
}

/* ===== Premium Global Theme Overrides ===== */
:root {
    --bg: #0a0a0a;
    --bg-soft: #141414;
    --panel: rgba(19, 19, 19, 0.95);
    --panel-strong: #1b1b1b;
    --text: #ffffff;
    --muted: #cccccc;
    --line: rgba(255, 255, 255, 0.1);
    --brand: #00c853;
    --brand-deep: #0a9b43;
    --brand-soft: rgba(0, 200, 83, 0.18);
    --gold: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.16);
    --radius-lg: 24px;
    --radius-md: 18px;
}

body {
    color: var(--text);
    background:
        radial-gradient(circle at 9% 8%, rgba(0, 200, 83, 0.12), transparent 25%),
        radial-gradient(circle at 90% 16%, rgba(212, 175, 55, 0.1), transparent 27%),
        linear-gradient(180deg, #070707 0%, #0a0a0a 35%, #0f0f0f 100%);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.inner-hero h1,
.section-heading h2,
.cta-banner h2,
.about-card h2,
.contact-info-card h2,
.product-card h2,
.brand-mark__text strong,
.footer-brand h3,
.footer-title {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.02em;
}

.main-shell {
    padding-top: 90px;
}

.site-navbar {
    background: rgba(10, 10, 10, 0.45);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(10px);
}

.site-navbar.is-scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: var(--line);
}

.brand-mark__icon {
    background: linear-gradient(135deg, #00c853, #0c8c3f);
    color: #071109;
    box-shadow: 0 12px 26px rgba(0, 200, 83, 0.3);
}

.brand-mark__text strong {
    font-size: 1.4rem;
    font-weight: 800;
}

.brand-mark__text small {
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.72);
}

.nav-link {
    font-weight: 600;
    letter-spacing: 0.07em;
}

.nav-link.active,
.nav-link:hover,
.nav-link:focus {
    color: #ffffff !important;
}

.nav-link.active {
    text-shadow: 0 0 14px rgba(0, 200, 83, 0.45);
}

.btn-energy {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #071109;
    font-weight: 700;
    border: 1px solid rgba(0, 200, 83, 0.35);
    box-shadow: 0 14px 30px rgba(0, 200, 83, 0.24);
}

.btn-energy:hover,
.btn-energy:focus {
    color: #071109;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-distributor,
.nav-item--cta .btn-energy {
    background: linear-gradient(135deg, #efcf7d, var(--gold));
    color: #221b08;
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 16px 28px rgba(212, 175, 55, 0.22);
}

.btn-distributor__icon {
    background: rgba(35, 27, 10, 0.2);
    color: #fff7df;
    font-weight: 700;
}

.hero-bg-glow--left {
    background: rgba(0, 200, 83, 0.22);
}

.hero-bg-glow--right {
    background: rgba(212, 175, 55, 0.2);
}

.eyebrow {
    color: #9bf0bb;
}

.hero-carousel,
.tagline-panel,
.info-card,
.product-card,
.about-card,
.company-panel,
.contact-card,
.contact-info-card,
.cta-banner,
.dashboard-kpi,
.dashboard-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--line);
}

.section-block--contrast {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 200, 83, 0.09));
}

.product-card__body h2,
.product-card__body h3,
.info-card h3,
.order-card__title,
.dashboard-card__header h2 {
    font-family: "Montserrat", sans-serif;
}

.product-badge,
.dashboard-chip {
    background: var(--brand-soft);
    color: #baf7d2;
}

.contact-mini-banner,
.dashboard-kpi--accent,
.dashboard-action--distributor {
    border-color: rgba(212, 175, 55, 0.34);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.form-control,
.form-select {
    border-color: rgba(255, 255, 255, 0.16);
    background-color: rgba(255, 255, 255, 0.04);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(0, 200, 83, 0.7);
    box-shadow: 0 0 0 0.2rem rgba(0, 200, 83, 0.2);
}

.admin-table thead th {
    background: rgba(0, 200, 83, 0.14);
    border-bottom-color: rgba(0, 200, 83, 0.3);
    color: #d9f9e6;
}

.admin-table tbody td {
    background: rgba(255, 255, 255, 0.012);
}

.dashboard-action__icon,
.btn-distributor__icon {
    font-family: "Montserrat", sans-serif;
}

.dashboard-action__icon {
    font-weight: 700;
}

.cart-summary h2,
.contact-info-card h2,
.dashboard-kpi strong,
.inventory-ring__inner strong,
.dashboard-chart__summary-item strong {
    font-family: "Montserrat", sans-serif;
}

.site-footer {
    background: rgba(5, 5, 5, 0.74);
}

.social-links {
    gap: 0.7rem;
}

.social-links a {
    padding: 0.3rem 0;
}

.brand-video {
    width: 100%;
    max-width: 100%;
    height: min(32rem, 65vw);
    object-fit: cover;
    border-radius: 1.25rem;
    border: 1px solid var(--line);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
    background: #111;
}

.brand-video-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-hero {
    padding-bottom: 2rem;
}

.about-hero__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.95fr);
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(200, 169, 107, 0.1);
    background:
        radial-gradient(circle at top right, rgba(155, 240, 187, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(19, 28, 23, 0.98), rgba(14, 22, 18, 0.96));
    box-shadow: var(--shadow);
}

.about-hero__copy p {
    margin-bottom: 0;
    max-width: 720px;
}

.about-hero__stats {
    display: grid;
    gap: 0.85rem;
    align-content: center;
}

.about-hero__stat {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(200, 169, 107, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.about-hero__stat strong {
    display: block;
    color: #f6f7f4;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-hero__stat span {
    display: block;
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.about-section__heading {
    max-width: 860px;
}

.about-card-grid {
    margin-bottom: 1.25rem;
}

.about-card--feature {
    position: relative;
    overflow: hidden;
}

.about-card--feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 45%);
    pointer-events: none;
}

.about-card__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: rgba(33, 68, 52, 0.34);
    border: 1px solid rgba(200, 169, 107, 0.12);
    color: #d6ebb8;
    font-size: 0.95rem;
    font-weight: 700;
}

.company-panel--video {
    align-items: stretch;
}

.about-showcase {
    position: relative;
}

.brand-video-block--showcase {
    height: 100%;
}

.brand-video-frame {
    position: relative;
    padding: 0.6rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(200, 169, 107, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(200, 169, 107, 0.12);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.brand-video-caption {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 169, 107, 0.08);
}

.brand-video-caption .eyebrow {
    margin-bottom: 0.45rem;
}

.brand-video-caption p {
    margin: 0;
}

.company-panel--video .brand-video {
    height: min(52rem, 70vw);
}

.company-panel--video .company-panel__actions {
    margin-top: 1.5rem;
}

.about-showcase__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.about-showcase__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 107, 0.12);
    color: #dce6de;
    font-size: 0.88rem;
    line-height: 1;
}

.company-panel__actions {
    margin-top: 1.25rem;
}

.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg, #25d366, #16a34a);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: scale(1.07);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.48);
}

.whatsapp-float__icon {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float__icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

/* Responsive polish patch: keep existing layout, fix mobile/tablet behavior */
.site-shell,
.main-shell {
    overflow-x: clip;
}

.table-responsive {
    border-radius: var(--radius-md);
}

.brochure-panel {
    margin-top: 2rem;
    padding: 1.75rem;
    background: linear-gradient(180deg, rgba(19, 28, 23, 0.98), rgba(14, 22, 18, 0.96));
    border: 1px solid rgba(200, 169, 107, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.brochure-panel__actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.brochure-viewer-frame {
    min-height: 540px;
    padding: 0.85rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 169, 107, 0.12);
    box-shadow: var(--shadow-sm);
}

.brochure-viewer {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 510px;
    border: 0;
    border-radius: 14px;
    background: #0d1713;
}

.brochure-viewer__fallback {
    min-height: 510px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(21, 34, 27, 0.98), rgba(14, 22, 18, 0.96));
}

.nutrition-section {
    padding-top: 1.25rem;
}

.nutrition-shell {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(200, 169, 107, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(19, 28, 23, 0.98), rgba(14, 22, 18, 0.96));
    border: 1px solid rgba(200, 169, 107, 0.1);
    box-shadow: var(--shadow);
}

.nutrition-heading {
    margin-bottom: 1.75rem;
}

.nutrition-card,
.nutrition-stat {
    height: 100%;
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 169, 107, 0.1);
    box-shadow: var(--shadow-sm);
}

.nutrition-card--featured {
    position: relative;
    overflow: hidden;
}

.nutrition-card--featured::after {
    content: "";
    position: absolute;
    inset: auto -10% -45% auto;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.08);
    filter: blur(8px);
}

.nutrition-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.9rem;
    border-radius: 14px;
    background: rgba(200, 169, 107, 0.12);
    font-size: 1.15rem;
}

.nutrition-card__label,
.nutrition-stat__title {
    display: block;
    margin-bottom: 0.45rem;
    color: #d6bb7c;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nutrition-card strong,
.nutrition-stat strong {
    display: block;
    color: #f6f7f4;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.2;
}

.nutrition-card small {
    display: block;
    margin-top: 0.7rem;
    color: var(--muted);
    line-height: 1.6;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.nutrition-stat--wide {
    grid-column: span 2;
}

.navbar-toggler {
    padding: 0.42rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 200, 83, 0.24);
}

@media (max-width: 991.98px) {
    .main-shell {
        padding-top: 82px;
    }

    .navbar-collapse {
        margin-top: 0.8rem;
        padding: 0.8rem;
        background: rgba(10, 10, 10, 0.95);
        border: 1px solid var(--line);
        border-radius: 14px;
    }

    .navbar-nav .nav-link {
        padding: 0.55rem 0.35rem;
    }

    .nav-item--cta .btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .hero-section,
    .inner-hero {
        padding-left: 0;
        padding-right: 0;
    }

    .product-card__media img,
    .product-card--tall .product-card__media img {
        height: 240px;
        object-fit: cover;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(2.4rem, 11vw, 3.4rem);
    }

    .section-heading h2,
    .inner-hero h1,
    .cta-banner h2,
    .contact-info-card h2,
    .product-card h2,
    .about-card h2 {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .product-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn,
    .cart-summary .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 0.9rem;
    }

    .contact-card,
    .contact-info-card,
    .company-panel,
    .dashboard-card {
        border-radius: 16px;
    }

    .admin-table {
        min-width: 560px;
    }

    .cart-product {
        align-items: flex-start;
    }

    .admin-thumb {
        width: 64px;
        height: 64px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        width: 52px;
        height: 52px;
    }
}

/* Clean readability pass: reduce heavy text and visual clutter */
body {
    letter-spacing: 0.3px;
}

p,
li,
label,
.table-description,
.form-note,
.form-help,
.hero-copy,
.section-heading p,
.tagline-panel p,
.product-card p,
.info-card p,
.about-card p,
.company-panel p,
.contact-card p,
.contact-info-card p,
.dashboard-empty,
.session-panel__row span,
.stock-bars__item small,
.stock-bars__meta span {
    font-weight: 400;
    line-height: 1.6;
    color: #cccccc;
    max-width: 600px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.inner-hero h1,
.section-heading h2,
.cta-banner h2,
.about-card h2,
.contact-info-card h2,
.product-card h2,
.dashboard-card__header h2,
.order-card__title {
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
}

.eyebrow,
.product-badge,
.dashboard-chip,
.dashboard-kpi__label,
.dashboard-hero__signal-label,
.inventory-ring__inner span,
.session-panel__row strong {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.section-block {
    padding-top: 60px;
    padding-bottom: 60px;
}

.inner-hero {
    padding-top: 60px;
    padding-bottom: 24px;
}

.section-heading,
.tagline-panel,
.contact-card,
.contact-info-card,
.company-panel,
.cta-banner {
    gap: 1rem;
}

.section-heading {
    margin-bottom: 1.4rem;
}

.hero-copy,
.inner-hero p,
.section-heading p {
    font-size: 1rem;
}

.btn,
.btn-lg,
.btn-sm {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-lg {
    padding: 0.68rem 1.25rem;
    font-size: 0.98rem;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.86rem;
}

@media (max-width: 991.98px) {
    .section-block {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .inner-hero {
        padding-top: 52px;
    }
}

@media (max-width: 767.98px) {
    h1,
    .hero-title,
    .inner-hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    h2,
    .section-heading h2,
    .product-card h2,
    .about-card h2,
    .contact-info-card h2 {
        font-size: clamp(1.3rem, 6vw, 1.75rem);
    }

    p,
    li,
    .hero-copy,
    .inner-hero p,
    .section-heading p {
        font-size: 0.95rem;
        max-width: 100%;
    }
}

/* ===== Modern premium UI refresh ===== */
:root {
    --bg: #07110d;
    --bg-soft: #0d1713;
    --panel: rgba(15, 23, 19, 0.96);
    --panel-strong: #111c17;
    --text: #f3f5f2;
    --muted: #a7b3ab;
    --line: rgba(201, 169, 107, 0.14);
    --brand: #214434;
    --brand-deep: #132a21;
    --brand-soft: rgba(72, 128, 93, 0.18);
    --gold: #c8a96b;
    --gold-soft: rgba(200, 169, 107, 0.14);
    --success-soft: rgba(72, 128, 93, 0.18);
    --danger-soft: rgba(186, 78, 78, 0.16);
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.22);
    --radius-lg: 24px;
    --radius-md: 18px;
}

html {
    font-size: 15px;
}

body {
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(72, 128, 93, 0.18), transparent 26%),
        radial-gradient(circle at top right, rgba(200, 169, 107, 0.12), transparent 22%),
        linear-gradient(180deg, #050907 0%, #07110d 45%, #0b1511 100%);
    font-family: "Inter", "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0;
    line-height: 1.6;
}

a {
    color: #d9c086;
    transition: color 0.25s ease;
}

a:hover,
a:focus {
    color: #f1ddb0;
}

.site-shell {
    min-height: 100vh;
}

.main-shell {
    padding-top: 88px;
}

.site-navbar {
    padding: 0.9rem 0;
    background: rgba(10, 16, 13, 0.9);
    border-bottom: 1px solid rgba(200, 169, 107, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.site-navbar.is-scrolled {
    padding: 0.72rem 0;
    background: rgba(10, 16, 13, 0.96);
    border-bottom-color: rgba(200, 169, 107, 0.12);
}

.brand-mark__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #f7f3ea;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.brand-mark__icon--image {
    width: 3.1rem;
    height: 3.1rem;
    padding: 0.18rem;
    background: rgba(255, 248, 234, 0.96);
    border: 1px solid rgba(200, 169, 107, 0.32);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.brand-mark__logo {
    display: block;
    width: 100%;
    height: 100%;
    /*object-fit: contain;*/
    object-position: center;
}

.brand-mark--header {
    gap: 0.8rem;
}

.brand-mark__icon--header {
    width: 3rem;
    height: 3rem;
    padding: 0.1rem;
    overflow: hidden;
}

.brand-mark__logo--header {
    width: 5rem;
    height: 4rem;
    max-width: none;
    transform: translate(-2%, -1%);
}

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-brand .brand-mark__icon--image {
    width: 4.4rem;
    height: 4.4rem;
    padding: 0.24rem;
    border-radius: 1.2rem;
}

.brand-mark__icon--footer {
    overflow: hidden;
}

.brand-mark__logo--footer {
    width: 112%;
    height: 118%;
    max-width: none;
    transform: translate(-1.5%, 3%);
}

.brand-mark__text strong,
.brand-mark__text small {
    color: var(--text);
}

.brand-mark__text strong {
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-mark__text small {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: #b8c2bb;
}

.nav-link {
    color: #d3dbd5 !important;
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
}

.nav-link.active,
.nav-link:hover,
.nav-link:focus {
    color: #f5e1af !important;
    text-shadow: none;
}

.cart-badge {
    background: rgba(200, 169, 107, 0.14);
    color: #f1ddb0;
    font-size: 0.72rem;
    font-weight: 600;
}

.hero-section,
.inner-hero,
.admin-dashboard-hero {
    background: transparent;
}

.hero-section {
    padding: 4.75rem 0 3.25rem;
}

.inner-hero {
    padding: 3.25rem 0 1.25rem;
}

.inner-hero--compact {
    padding-bottom: 0.75rem;
}

.hero-bg-glow,
.hero-bg-glow--left,
.hero-bg-glow--right {
    opacity: 0.55;
    filter: blur(56px);
}

.eyebrow,
.product-badge,
.dashboard-chip,
.dashboard-kpi__label,
.dashboard-hero__signal-label,
.order-card__status,
.inventory-ring__inner span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    color: #d6bb7c;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.inner-hero h1,
.section-heading h2,
.cta-banner h2,
.about-card h2,
.contact-info-card h2,
.product-card h2,
.dashboard-card__header h2,
.order-card__title,
.footer-brand h3,
.footer-title {
    color: #f6f7f4;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.03em;
    text-transform: none;
}

.hero-title {
    font-size: clamp(2.8rem, 5.6vw, 4.5rem);
    margin-bottom: 1rem;
}

.section-heading h2,
.inner-hero h1,
.cta-banner h2,
.contact-info-card h2,
.product-card h2,
.about-card h2 {
    font-size: clamp(2rem, 3.7vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.product-card__body h2,
.product-card__body h3,
.info-card h3,
.dashboard-card__header h2,
.order-card__title {
    font-family: "Inter", "Segoe UI", sans-serif;
}

p,
li,
label,
.hero-copy,
.inner-hero p,
.section-heading p,
.tagline-panel p,
.product-card p,
.info-card p,
.about-card p,
.company-panel p,
.contact-card p,
.contact-info-card p,
.table-description,
.form-note,
.form-help,
.dashboard-empty,
.footer-brand p,
.footer-bottom,
.stock-bars__item small,
.stock-bars__meta span,
.session-panel__row span,
.contact-list li,
.footer-links li {
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: none;
}

.hero-copy,
.inner-hero p,
.section-heading p {
    font-size: 1rem;
    max-width: 680px;
}

.section-block {
    padding: 3.5rem 0 4rem;
}

.section-block--contrast {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(33, 68, 52, 0.18));
}

.hero-carousel,
.tagline-panel,
.info-card,
.product-card,
.about-card,
.company-panel,
.contact-card,
.contact-info-card,
.cta-banner,
.dashboard-kpi,
.dashboard-card,
.dashboard-hero__signal,
.cart-summary {
    background: linear-gradient(180deg, rgba(19, 28, 23, 0.98), rgba(14, 22, 18, 0.96));
    border: 1px solid rgba(200, 169, 107, 0.1);
    box-shadow: var(--shadow);
}

.tagline-panel,
.company-panel,
.contact-card,
.contact-info-card,
.cta-banner,
.info-card,
.about-card,
.dashboard-card {
    padding: 1.75rem;
}

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover,
.dashboard-action:hover {
    transform: translateY(-4px);
}

.product-card:hover {
    border-color: rgba(200, 169, 107, 0.18);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.product-card__media {
    padding: 1.25rem 1.25rem 0;
}

.product-card__media img {
    border-radius: 18px;
    background: #13201a;
}

.product-card__body {
    padding: 1.35rem;
}

.product-badge,
.dashboard-chip {
    background: rgba(200, 169, 107, 0.12);
    color: #e6cd95;
}

.product-stock {
    color: #a7e0b8;
    font-weight: 500;
}

.product-card__meta {
    align-items: center;
    gap: 0.9rem;
    font-weight: 600;
}

.product-card__meta span {
    color: #f3f5f2;
    font-size: 1.05rem;
}

.btn,
.btn-lg,
.btn-sm {
    border-radius: 14px;
    font-weight: 500;
    letter-spacing: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn {
    padding: 0.7rem 1.1rem;
}

.btn-lg {
    padding: 0.82rem 1.25rem;
    font-size: 0.98rem;
}

.btn-sm {
    padding: 0.48rem 0.82rem;
    font-size: 0.86rem;
}

.btn-energy,
.nav-item--cta .btn-energy {
    color: #f8faf8;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    border: 1px solid rgba(200, 169, 107, 0.14);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

.btn-energy:hover,
.btn-energy:focus,
.nav-item--cta .btn-energy:hover,
.nav-item--cta .btn-energy:focus {
    color: #f8faf8;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
}

.btn-distributor {
    color: #2a2110;
    background: linear-gradient(135deg, #f1ddb0, #c8a96b);
    border: 1px solid rgba(200, 169, 107, 0.45);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.btn-distributor:hover,
.btn-distributor:focus {
    color: #4f3d1b;
    box-shadow: 0 14px 28px rgba(200, 169, 107, 0.22);
}

.btn-distributor__icon {
    width: 1.7rem;
    height: 1.7rem;
    background: rgba(42, 33, 16, 0.18);
    color: #fff7e5;
    box-shadow: none;
}

.btn-outline-light {
    color: #e7ece8;
    border-color: rgba(200, 169, 107, 0.18);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow-sm);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: #f5e1af;
    background: rgba(200, 169, 107, 0.08);
    border-color: rgba(200, 169, 107, 0.28);
}

.btn-outline-danger {
    border-radius: 12px;
}

.form-label {
    color: #d7dfd9;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 0.45rem;
}

.form-control,
.form-select {
    min-height: 46px;
    color: #f4f6f3;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 107, 0.14);
    border-radius: 14px;
    padding: 0.78rem 0.95rem;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
}

.form-control::placeholder {
    color: #8f9d94;
}

.form-control:focus,
.form-select:focus {
    color: #f4f6f3;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(200, 169, 107, 0.34);
    box-shadow: 0 0 0 0.2rem rgba(200, 169, 107, 0.1);
}

.distributor-select {
    min-height: 46px;
    color: #f4f6f3;
    background-color: rgba(255, 255, 255, 0.04);
}

.distributor-select option {
    color: #111111;
    background-color: #ffffff;
}

.required-mark {
    color: #dc2626;
}

.alert {
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    color: #b8ebc4;
    background: rgba(72, 128, 93, 0.14);
    border: 1px solid rgba(72, 128, 93, 0.2);
}

.alert-danger {
    color: #f4c0c0;
    background: rgba(186, 78, 78, 0.14);
    border: 1px solid rgba(186, 78, 78, 0.2);
}

.admin-toolbar {
    align-items: center;
    margin-bottom: 1.25rem;
}

.admin-table {
    color: var(--text);
    background: rgba(15, 23, 19, 0.96);
    border: 1px solid rgba(200, 169, 107, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.admin-table thead th {
    color: #ead7ab;
    background: rgba(200, 169, 107, 0.08);
    border-bottom: 1px solid rgba(200, 169, 107, 0.12);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 1.1rem;
}

.admin-table tbody td {
    color: #eef2ee;
    background: rgba(15, 23, 19, 0.92);
    border-color: rgba(200, 169, 107, 0.08);
    padding: 1rem 1.1rem;
}

.admin-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.admin-thumb {
    border-radius: 14px;
    background: #13201a;
    box-shadow: var(--shadow-sm);
}

.dashboard-kpi strong,
.inventory-ring__inner strong,
.dashboard-chart__summary-item strong,
.dashboard-hero__signal strong,
.dashboard-stat {
    color: #f6f7f4;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.dashboard-kpi {
    padding: 1.35rem;
}

.dashboard-kpi--primary,
.dashboard-kpi--accent,
.dashboard-kpi--warning,
.dashboard-card--session,
.dashboard-card--signals,
.dashboard-action--distributor,
.contact-mini-banner {
    background: linear-gradient(180deg, rgba(19, 28, 23, 0.98), rgba(14, 22, 18, 0.96));
    border-color: rgba(200, 169, 107, 0.1);
}

.dashboard-hero__signal,
.dashboard-chart__stage,
.dashboard-chart__summary-item,
.order-card__panel,
.order-card__address,
.stock-bars__item,
.dashboard-action {
    background: rgba(17, 28, 22, 0.96);
    border: 1px solid rgba(200, 169, 107, 0.1);
    box-shadow: var(--shadow-sm);
}

.dashboard-action {
    color: inherit;
}

.dashboard-action:hover {
    background: rgba(21, 34, 27, 0.98);
    border-color: rgba(200, 169, 107, 0.18);
    color: inherit;
}

.dashboard-action__icon {
    background: rgba(72, 128, 93, 0.18);
    color: #d8eadf;
    border-radius: 14px;
}

.dashboard-action--distributor .dashboard-action__icon {
    background: rgba(200, 169, 107, 0.16);
    color: #e6cd95;
    box-shadow: none;
}

.stock-bars__track,
.stacked-meter {
    background: rgba(255, 255, 255, 0.08);
}

.stock-bars__fill {
    background: linear-gradient(135deg, #2f5a45, #4d8a67);
}

.session-panel__row {
    border-bottom-color: rgba(200, 169, 107, 0.08);
}

.session-panel__row strong,
.stock-bars__meta strong,
.order-card__panel strong,
.product-card__meta a {
    color: #f5e1af;
}

.inventory-ring::before {
    background: #111c17;
}

.table-responsive {
    border-radius: var(--radius-md);
}

.site-footer {
    margin-top: 1.5rem;
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid rgba(200, 169, 107, 0.08);
    background: rgba(8, 13, 10, 0.72);
}

.footer-brand p,
.social-links a,
.footer-links a,
.footer-bottom {
    color: var(--muted);
}

.social-links a:hover,
.footer-links a:hover {
    color: var(--brand-deep);
}

.whatsapp-float {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.2);
}

.whatsapp-float__icon {
    color: #ffffff;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.admin-login-shell {
    padding-top: 1rem;
}

.admin-login-card {
    padding: 2rem;
}

.admin-login-form {
    row-gap: 1rem;
}

.text-danger.small,
.field-validation-error {
    display: inline-block;
    margin-top: 0.35rem;
    color: #b42318 !important;
    font-size: 0.82rem;
}

.shadow-energy {
    box-shadow: var(--shadow);
}

.reveal-up {
    transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (max-width: 991.98px) {
    .main-shell {
        padding-top: 82px;
    }

    .navbar-collapse {
        margin-top: 0.85rem;
        padding: 0.95rem;
        background: rgba(10, 16, 13, 0.98);
        border: 1px solid rgba(200, 169, 107, 0.1);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .dashboard-shell,
    .dashboard-grid,
    .dashboard-overview,
    .inventory-split,
    .dashboard-hero,
    .dashboard-chart,
    .nutrition-grid,
    .dashboard-actions--grid {
        grid-template-columns: 1fr;
    }

    .section-block {
        padding: 3rem 0 3.4rem;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }

    .about-hero__panel {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        border-radius: 18px;
    }

    .hero-section {
        padding: 3.8rem 0 2.5rem;
    }

    .inner-hero {
        padding: 2.75rem 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .section-heading h2,
    .inner-hero h1,
    .cta-banner h2,
    .contact-info-card h2,
    .product-card h2,
    .about-card h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .tagline-panel,
    .company-panel,
    .contact-card,
    .contact-info-card,
    .cta-banner,
    .info-card,
    .about-card,
    .dashboard-card,
    .admin-login-card {
        padding: 1.25rem;
    }

    .brand-video {
        height: min(24rem, 72vw);
    }

    .brand-video-frame {
        padding: 0.45rem;
        border-radius: 1.2rem;
    }

    .company-panel--video .brand-video {
        height: min(22rem, 74vw);
    }

    .about-showcase__chips span {
        width: 100%;
        justify-content: center;
    }

    .hero-actions .btn,
    .cart-summary .btn,
    .admin-toolbar .btn,
    .order-card__footer .btn,
    .brochure-panel__actions .btn {
        width: 100%;
    }

    .product-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-table {
        min-width: 560px;
    }

    .brochure-panel,
    .brochure-viewer__fallback,
    .nutrition-shell {
        padding: 1.25rem;
    }

    .brochure-viewer-frame {
        min-height: 420px;
        padding: 0.65rem;
    }

    .brochure-viewer,
    .brochure-viewer__fallback {
        min-height: 390px;
    }

    .nutrition-stat--wide {
        grid-column: span 1;
    }
}
