:root {
    --max-width: 1280px;
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --accent: #00ff88;
    --header-offset: 86px;
    /* neon green */
    --muted: #cfcfcf;
    --radius: 12px;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ff88dd;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Firefox Scrollbar */
* {
    scrollbar-color: var(--accent) var(--bg-secondary);
    scrollbar-width: thin;
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: Poppins, Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--muted);
    background: var(--bg-primary)
}

body {
    padding-top: var(--header-offset);
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem
}

/* Header / Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto
}

.brand {
    font-weight: 900;
    color: var(--accent);
    text-decoration: none;
    font-size: 1.25rem;
    letter-spacing: 0.6px
}

.brand-logo {
    height: 60px;
    display: block
}

.nav {
    display: none;
    gap: 0.75rem;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    flex-direction: column;
}

.nav.is-open {
    display: flex;
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
}

.nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06)
}

.nav a.active-link {
    color: var(--accent);
    background: rgba(0, 255, 136, 0.12);
}

.nav-toggle {
    background: transparent;
    border: 0;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.hamburger {
    width: 28px;
    height: 2px;
    background: var(--muted);
    display: block;
    position: relative;
    transition: background-color 220ms ease, transform 220ms ease
}

.hamburger:after,
.hamburger:before {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--muted);
    transform-origin: center;
    transition: transform 220ms ease, top 220ms ease, opacity 180ms ease
}

.hamburger:before {
    top: -8px
}

.hamburger:after {
    top: 8px
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger:before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger:after {
    top: 0;
    transform: rotate(-45deg);
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    padding: 6rem 1rem;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: 110%;
    background-position: center;
    filter: brightness(0.45);
    opacity: 0;
    z-index: 0;
    transition: opacity 800ms ease;
}

.hero-bg.active {
    opacity: 1;
    animation: kenBurns 6s ease-out forwards;
}

.hero-bg-alt {
    z-index: 1;
}

@keyframes kenBurns {
    0% {
        background-size: 110%;
        background-position: center center;
    }

    100% {
        background-size: 125%;
        background-position: 55% 45%;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 2rem
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2
}

.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    z-index: 2
}

.product-jar {
    width: clamp(150px, 42vw, 280px);
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite
}

.hero-title {
    font-size: clamp(1.8rem, 8vw, 3.75rem);
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 1rem;
    font-weight: 900
}

.hero-sub {
    color: var(--muted);
    margin: 0 0 1.5rem;
    font-size: 1.05rem
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-cta .btn {
    margin-right: 0
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.7rem 1.25rem;
    text-decoration: none;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative
}

.btn.primary {
    background: linear-gradient(90deg, var(--accent), #33ffb2);
    color: #0f0f0f;
    box-shadow: 0 6px 28px rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.12)
}

.btn.outline {
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.06)
}

.btn:hover {
    transform: translateY(-4px)
}

.btn.primary:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(0, 255, 136, 0.22);
    opacity: 0;
    transition: opacity .18s
}

.btn.primary:hover:before {
    opacity: 1
}

.btn.small {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 28px;
    margin: 0 0 1rem;
    color: #fff
}

.features {
    background: var(--bg-secondary);
    padding: 60px 0
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem
}

.feature-card {
    background: var(--bg-primary);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform .18s ease, box-shadow .18s ease
}

.feature-card h3 {
    margin: 0.5rem 0;
    color: #fff
}

.feature-card p {
    color: var(--muted);
    font-size: 0.95rem
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 46px rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.18)
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin: auto
}

.products {
    padding: 60px 0
}

/* Swiper overrides */
.swiper,
.swiper-container {
    position: relative;
}

.swiper-slide {
    padding: 0.25rem;
}

.products-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.products-swiper .swiper-slide .product-card {
    width: 100%;
    height: 100%;
}

.products-swiper {
    padding-bottom: 50px !important;
}

.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
    top: auto;
    bottom: 0;
    transform: none;
    color: #fff;
}

.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s all;
}

.products-swiper .swiper-button-prev:hover,
.products-swiper .swiper-button-next:hover {
    border: 1px solid rgb(0 255 136 / 32%);
}

.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after {
    font-size: 16px;
}

.products-swiper .swiper-button-prev {
    left: calc(50% - 40px);
}

.products-swiper .swiper-button-next {
    right: calc(50% - 40px);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--muted);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #fff;
}

.swiper-pagination-bullet {
    background: var(--muted);
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

/* Transformation CTA style */
.cta-hero {
    text-align: center;
    padding: 4rem 1rem;
    background-size: cover;
    background-position: center;
    color: #fff;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1580232308548-3c945fcb6f96?q=80&w=1920&auto=format&fit=crop');
}

.cta-hero h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 900;
}

/* Testimonials */
.testimonials {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.testi-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.testi-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.testi-img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 auto 0.75rem;
}

.stars {
    color: var(--accent);
    margin-top: 0.5rem;
}

@media(min-width:700px) {
    .testi-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem
}

.product-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: transform .18s ease, box-shadow .18s ease
}

.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    background: #323232;
    padding: 0.45rem;
    border-radius: 8px;
    transition: transform .35s ease
}

.product-card h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #fff
}

.price {
    font-weight: 800;
    color: var(--accent)
}

.product-actions {
    margin-top: auto
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 255, 136, 0.14)
}

.product-card:hover img {
    transform: scale(1.04)
}

/* Transformation CTA */
.cta-hero {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1546484959-f3b2b3a7d5f7?q=80&w=1920&auto=format&fit=crop');
    padding: 4rem 1rem;
    text-align: center;
    color: #fff
}

.cta-hero h2 {
    font-size: 1.75rem;
    margin: 0 0 1rem;
    font-weight: 900
}

/* Footer */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--muted)
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.75;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 2rem 3rem;
    align-items: start;
    padding: 48px 0
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-brand img {
    max-width: min(250px, 72vw);
}

.footer-desc {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
    max-width: 360px;
}

.footer-links-col h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact address {
    font-style: normal;
    color: var(--muted);
    line-height: 1.8;
}

.footer-contact address div {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.footer-contact address .fc-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 7px;
    color: var(--accent);
}

.footer-contact address a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-contact address a:hover {
    color: var(--accent);
}

.socials {
    display: none;
}

.social {
    display: inline-flex;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted);
}

.copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(207, 207, 207, 0.9);
    font-size: 0.9rem;
    text-align: center
}

/* Utilities / responsiveness */
@media(min-width:700px) {
    :root {
        --header-offset: 92px;
    }

    .nav {
        display: flex;
        position: static;
        left: auto;
        right: auto;
        top: auto;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        flex-direction: row;
        gap: 1.25rem;
    }

    .nav a {
        padding: 0.35rem 0.25rem;
        border-radius: 0;
        background: transparent;
        font-weight: 400;
    }

    .nav a.active-link {
        background: transparent;
        border-bottom: 2px solid var(--accent);
    }

    .nav-toggle {
        display: none
    }

    .hero {
        min-height: 74vh
    }

    .hero-title {
        font-size: clamp(2.25rem, 5vw, 3.75rem)
    }

    .hero-grid {
        grid-template-columns: 1fr 360px
    }

    .hero-media {
        max-width: 300px;
    }

    .product-jar {
        width: clamp(170px, 30vw, 250px);
    }

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

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

@media(min-width:1100px) {
    .nav-container {
        padding: 1rem
    }

    .hero-title {
        font-size: 3.75rem
    }

    .hero-grid {
        grid-template-columns: 1fr 400px
    }

    .hero-media {
        max-width: 340px;
    }

    .product-jar {
        width: clamp(200px, 24vw, 300px);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(min-width:900px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 2rem 3rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-desc {
        max-width: 360px;
    }
}

@media(min-width:1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 2rem 4rem;
    }
}

/* Footer max-width breakpoint system */
@media(max-width: 1399px) {
    .footer-grid {
        gap: 1.75rem 2rem;
    }
}

@media(max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 1.5rem 2rem;
        padding: 36px 0;
    }
}

@media(max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1.5rem;
        padding: 32px 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 100%;
    }

    .copyright {
        padding: 20px 0;
    }
}

@media(max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 28px 0;
    }

    .footer-brand,
    .footer-links-col,
    .footer-contact {
        text-align: center;
    }

    .footer-contact address {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand img {
        margin: 0 auto;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a:hover {
        transform: none;
    }
}

@media(max-width: 575px) {

    .footer-desc,
    .footer-contact address {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .copyright {
        font-size: 0.82rem;
    }
}

@media(max-width: 480px) {
    .footer-brand img {
        max-width: 180px;
    }
}

@media(max-width: 375px) {

    .footer-links-col h4,
    .footer-contact h4 {
        font-size: 0.95rem;
    }
}

/* small polish */
.fade-in {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 450ms ease, transform 450ms ease
}

.fade-in.visible {
    opacity: 1;
    transform: none
}

/* ── About page ── */
.about-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1rem 5rem;
    overflow: hidden;
    color: #fff;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.about-hero-content h1 {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-hero-content h1 span {
    color: var(--accent);
}

.about-hero-content p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.about-story {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.story-img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    height: 320px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.story-text h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.story-text h2 span {
    color: var(--accent);
}

.story-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
}

@media(min-width:900px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero-content h1 {
        font-size: 3.5rem;
    }
}

.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 255, 136, 0.12);
    border-bottom: 1px solid rgba(0, 255, 136, 0.12);
    padding: 2.75rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

@media(min-width:700px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-values {
    padding: 4.5rem 0;
    background: var(--bg-secondary);
}

/* ── Contact page ── */
.contact-hero {
    position: relative;
    min-height: 44vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1rem 5rem;
    overflow: hidden;
    color: #fff;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.3);
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.contact-hero-content h1 span {
    color: var(--accent);
}

.contact-hero-content p {
    color: var(--muted);
    font-size: 1.05rem;
}

@media(min-width:900px) {
    .contact-hero-content h1 {
        font-size: 3.5rem;
    }
}

.contact-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media(min-width:640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:1024px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 255, 136, 0.25);
    box-shadow: 0 18px 48px rgba(0, 255, 136, 0.07);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.18);
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

.contact-card h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.contact-card p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

.contact-card .contact-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    word-break: break-all;
}

.contact-card.whatsapp .contact-card-icon {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.25);
}

.contact-card.whatsapp .contact-card-icon svg {
    color: #25d366;
}

.contact-card.whatsapp .contact-link {
    color: #25d366;
}

.contact-card.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 18px 48px rgba(37, 211, 102, 0.07);
}

.contact-info-strip {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    padding: 2.5rem 0;
}

.info-strip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
}

@media(min-width:700px) {
    .info-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-strip-item h4 {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.35rem;
}

.info-strip-item p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ── Products page ── */
.products-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1rem 4.5rem;
    overflow: hidden;
    color: #fff;
}

.products-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1579722821273-0f6c7d44362f?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center 40%;
    filter: brightness(0.28);
    z-index: 0;
}

.products-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.products-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.products-hero-content h1 span {
    color: var(--accent);
}

.products-hero-content p {
    color: var(--muted);
    font-size: 1.05rem;
}

@media(min-width:900px) {
    .products-hero-content h1 {
        font-size: 3.5rem;
    }
}

.filter-bar {
    padding: 2rem 0 0.5rem;
    background: var(--bg-primary);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.filter-btn {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s, color .18s, border-color .18s;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: #0f0f0f;
    border-color: var(--accent);
}

.products-catalog {
    padding: 2.5rem 0 5rem;
    background: var(--bg-primary);
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

@media(min-width:560px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:700px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width:1100px) {
    .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.p-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}

.p-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.55);
}

.p-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #323232;
    padding: 0.45rem;
}

.p-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .4s ease;
    display: block;
    border-radius: 8px;
}

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

.p-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #0f0f0f;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.p-card-body {
    padding: 0.9rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.p-card-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--accent);
}

.p-card-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.97rem;
    margin: 0;
    line-height: 1.3;
}

.p-card-short {
    display: none;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.p-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.p-card-price {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.05rem;
}

.p-card-cta {
    font-size: 0.78rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 255, 136, 0.2);
    font-weight: 700;
    transition: background .18s, color .18s;
}

.p-card:hover .p-card-cta {
    background: var(--accent);
    color: #0f0f0f;
}

.p-card.hidden-card {
    display: none;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

@media(min-width:480px) {
    .modal-overlay {
        padding: 0.5rem;
    }
}

@media(min-width:640px) {
    .modal-overlay {
        align-items: center;
        padding: 1rem;
    }
}

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

.modal-box {
    background: #131313;
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 20px 20px 0 0;
    width: calc(100% - 1rem);
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(60px);
    transition: transform .32s cubic-bezier(.22, .68, 0, 1.2);
    position: relative;
    margin: 0 0.5rem;
}

@media(min-width:480px) {
    .modal-box {
        width: calc(100% - 1rem);
        margin: 0 0.5rem;
    }
}

@media(min-width:640px) {
    .modal-box {
        width: 100%;
        margin: 0;
        border-radius: 20px;
        transform: translateY(40px) scale(0.97);
    }
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s, color .18s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 255, 136, 0.12);
    color: #fff;
}

.modal-inner {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

@media(min-width:600px) {
    .modal-inner {
        grid-template-columns: 35% 1fr;
    }
}

@media(min-width:768px) {
    .modal-inner {
        grid-template-columns: 40% 1fr;
    }
}

.modal-img-col {
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    overflow: visible;
    width: 100%;
}

.modal-img-col .modal-main-img {
    width: 100%;
    height: calc(100% - 60px);
    max-height: 200px;
    flex: 1;
    object-fit: contain !important;
    object-position: center;
}

.modal-size-options {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    margin-top: 0.6rem;
    padding: 0 0.75rem;
}

.modal-size-btn {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    padding: 0.4rem 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    min-height: 44px;
}

.modal-size-btn .size-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #fff;
}

@media(min-width:480px) {
    .modal-size-btn .size-label {
        font-size: 1rem;
        font-weight: 800;
    }

    .modal-size-options {
        gap: 0.5rem;
    }
}

@media(min-width:600px) {
    .modal-img-col {
        height: 100%;
        min-height: 380px;
        padding: 1.2rem;
    }

    .modal-img-col .modal-main-img {
        max-height: none;
        height: auto;
    }

    .modal-size-options {
        margin-top: 1rem;
        padding: 0;
    }

    .modal-size-btn {
        padding: 0.6rem 0.2rem;
    }

    .modal-size-btn .size-label {
        font-size: 1.1rem;
        font-weight: 800;
        letter-spacing: 0.4px;
    }
}

.modal-size-btn:hover,
.modal-size-btn.active {
    border-color: rgba(0, 255, 136, 0.45);
    background: rgba(0, 255, 136, 0.12);
    transform: translateY(-1px);
}

.modal-info-col {
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    overflow-y: auto;
}

@media(min-width:480px) {
    .modal-info-col {
        padding: 1.3rem 1.1rem;
        gap: 0.4rem;
    }
}

@media(min-width:640px) {
    .modal-info-col {
        padding: 1.4rem 1.35rem;
        gap: 0.5rem;
    }
}

.modal-info-col>div {
    display: flex;
    flex-direction: column;
}



.modal-cat {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--accent);
}

@media(min-width:480px) {
    .modal-cat {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}

@media(min-width:640px) {
    .modal-cat {
        font-size: 0.75rem;
        letter-spacing: 0.6px;
    }
}

.modal-name {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0.25rem 0 0 0;
}

@media(min-width:480px) {
    .modal-name {
        font-size: 1.35rem;
        margin: 0.3rem 0 0 0;
    }
}

@media(min-width:640px) {
    .modal-name {
        font-size: 1.45rem;
        margin: 0.35rem 0 0 0;
    }
}

.modal-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

@media(min-width:480px) {
    .modal-price {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
}

@media(min-width:640px) {
    .modal-price {
        font-size: 1.35rem;
        margin-bottom: 0.6rem;
    }
}

.modal-desc {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

@media(min-width:400px) {
    .modal-desc {
        font-size: 0.82rem;
        line-height: 1.6;
    }
}

@media(min-width:480px) {
    .modal-desc {
        font-size: 0.85rem;
        line-height: 1.65;
    }
}

@media(min-width:640px) {
    .modal-desc {
        font-size: 0.92rem;
        line-height: 1.7;
    }
}

.modal-macros {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 0.9rem 0.8rem;
    overflow-x: hidden;
}

@media(min-width:400px) {
    .modal-macros {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.7rem;
        padding: 1rem 0.9rem;
    }
}

@media(min-width:480px) {
    .modal-macros {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 1.1rem 1rem;
    }
}

@media(min-width:640px) {
    .modal-macros {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.8rem;
        padding: 1.2rem 1rem;
    }
}

.macro-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.macro-item .macro-val {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

@media(min-width:400px) {
    .macro-item .macro-val {
        font-size: 0.95rem;
    }
}

@media(min-width:480px) {
    .macro-item .macro-val {
        font-size: 1rem;
    }
}

@media(min-width:640px) {
    .macro-item .macro-val {
        font-size: 1.05rem;
    }
}

.macro-item .macro-lbl {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.25px;
    margin-top: 0.2rem;
    line-height: 1.2;
    text-align: center;
}

@media(min-width:400px) {
    .macro-item .macro-lbl {
        font-size: 0.6rem;
        letter-spacing: 0.3px;
        margin-top: 0.25rem;
    }
}

@media(min-width:480px) {
    .macro-item .macro-lbl {
        font-size: 0.62rem;
        letter-spacing: 0.32px;
    }
}

@media(min-width:640px) {
    .macro-item .macro-lbl {
        font-size: 0.65rem;
        letter-spacing: 0.35px;
        margin-top: 0.3rem;
    }
}

.modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.modal-benefits li {
    color: var(--muted);
    font-size: 0.78rem;
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    line-height: 1.45;
}

@media(min-width:400px) {
    .modal-benefits {
        gap: 0.35rem;
    }

    .modal-benefits li {
        font-size: 0.8rem;
        gap: 0.38rem;
    }
}

@media(min-width:480px) {
    .modal-benefits {
        gap: 0.4rem;
    }

    .modal-benefits li {
        font-size: 0.83rem;
        gap: 0.4rem;
        line-height: 1.5;
    }
}

@media(min-width:640px) {
    .modal-benefits {
        gap: 0.4rem;
    }

    .modal-benefits li {
        font-size: 0.88rem;
        gap: 0.5rem;
    }
}

.modal-benefits li::before {
    content: "✦";
    color: var(--accent);
    font-size: 0.6rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

@media(min-width:480px) {
    .modal-benefits li::before {
        font-size: 0.62rem;
        margin-top: 0.2rem;
    }
}

@media(min-width:640px) {
    .modal-benefits li::before {
        font-size: 0.65rem;
        margin-top: 0.2rem;
    }
}

.modal-flavors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.flavor-pill {
    background: rgba(0, 255, 136, 0.07);
    border: 1px solid rgba(0, 255, 136, 0.18);
    color: var(--accent);
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
}

@media(min-width:480px) {
    .flavor-pill {
        padding: 0.25rem 0.7rem;
        font-size: 0.75rem;
    }
}

@media(min-width:640px) {
    .flavor-pill {
        padding: 0.25rem 0.75rem;
        font-size: 0.78rem;
    }
}

.modal-section-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.6rem;
    margin-bottom: 0.4rem;
}

@media(min-width:480px) {
    .modal-section-label {
        font-size: 0.68rem;
        letter-spacing: 0.55px;
        margin-bottom: 0.45rem;
    }
}

@media(min-width:640px) {
    .modal-section-label {
        font-size: 0.72rem;
        letter-spacing: 0.6px;
        margin-bottom: 0.5rem;
    }
}


.modal-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #25d366;
    color: #fff;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background .18s;
    margin-top: 0.5rem;
    align-self: flex-start;
}

@media(min-width:480px) {
    .modal-whatsapp {
        padding: 0.6rem 1.15rem;
        font-size: 0.85rem;
        gap: 0.45rem;
    }
}

@media(min-width:640px) {
    .modal-whatsapp {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        margin-top: 0.25rem;
    }
}

.modal-whatsapp:hover {
    background: #1ebe59;
}

.modal-whatsapp svg {
    width: 16px;
    height: 16px;
}

@media(min-width:480px) {
    .modal-whatsapp svg {
        width: 17px;
        height: 17px;
    }
}

@media(min-width:640px) {
    .modal-whatsapp svg {
        width: 18px;
        height: 18px;
    }
}

@media(min-width:520px) and (max-width:699px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

@media(max-width:699px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .brand-logo {
        height: 50px;
    }

    .hero {
        min-height: auto;
        padding: 4.5rem 1rem 3.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-media {
        order: -1;
        max-width: 260px;
    }

    .product-jar {
        width: clamp(130px, 48vw, 220px);
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-hero,
    .contact-hero,
    .products-hero {
        min-height: auto;
        padding: 4.5rem 1rem 3.5rem;
    }

    .about-hero-content h1,
    .contact-hero-content h1,
    .products-hero-content h1 {
        font-size: clamp(1.85rem, 9vw, 3rem);
    }

    .p-card-img-wrap img {
        aspect-ratio: 1 / 1;
    }

    .modal-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact address {
        text-align: center;
    }
}