:root {
    --botica-bg: #f8f4ec;
    --botica-cream: #fffaf2;
    --botica-gold: #c9a85c;
    --botica-gold-dark: #a8863f;
    --botica-blue: #dfeef5;
    --botica-lilac: #eee7f5;
    --botica-sage: #e5eee4;
    --botica-rose: #f4e6e7;
    --botica-sand: #efe4d5;
    --botica-ivory: #f7f1e6;
    --botica-text: #3f4348;
    --botica-muted: #6e7176;
    --botica-shadow: 0 18px 45px rgba(76, 63, 44, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--botica-text);
    background:
        radial-gradient(circle at top left, rgba(223, 238, 245, 0.55), transparent 34%),
        radial-gradient(circle at top right, rgba(238, 231, 245, 0.45), transparent 30%),
        linear-gradient(180deg, #fffdf8 0%, var(--botica-bg) 100%);
    min-height: 100vh;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

.botica-page {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 54px;
}


/* =========================
   TERUGKNOP
========================= */

.top-navigation {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 100;
    margin: 0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1px solid rgba(169, 134, 63, 0.35);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.82);
    color: var(--botica-gold-dark);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 22px rgba(76, 63, 44, 0.08);
    transition: 0.25s ease;
}

.category-back {
    margin: 18px auto 16px;
}

.back-button:hover {
    transform: translateY(-2px);
    border-color: var(--botica-gold);
    background: #fffdf8;
}


/* ==================================================
   HERO BOTICA - PORTAL STYLE
================================================== */

.botica-hero {
    position: relative;
    overflow: hidden;

    width: auto;

    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);

    margin-top: 0;
    margin-bottom: 58px;

    padding: 56px 40px 50px;

    text-align: center;
    border-radius: 0;

    background:
        linear-gradient(
            90deg,
            #7d2cae 0%,
            #5348c7 18%,
            #2798d1 38%,
            #43b8ba 58%,
            #83b67b 77%,
            #d0b047 100%
        );

    box-shadow:
        0 18px 42px rgba(76, 63, 44, 0.11);
}

    box-shadow:
        0 18px 42px rgba(76, 63, 44, 0.11);
}


/* zachte glans over de gradient */
.botica-hero::before {
    content: "";
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 20% 15%,
            rgba(255,255,255,0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 82% 78%,
            rgba(255,236,180,0.12),
            transparent 35%
        );

    pointer-events: none;
}


/* alles boven de achtergrond houden */
.botica-hero > * {
    position: relative;
    z-index: 2;
}


/* LOGO */

.botica-hero__logo-link {
    display: inline-block;
    margin-bottom: 18px;
    text-decoration: none;
}

.botica-hero__logo {
    display: block;

    width: 150px;
    height: 150px;

    margin: 0 auto;

    object-fit: contain;

    filter:
        drop-shadow(0 0 16px rgba(255,255,255,0.18))
        drop-shadow(0 8px 16px rgba(45,35,60,0.12));
}


/* EYEBROW */

.botica-hero .eyebrow {
    margin-bottom: 10px;

    color: rgba(255,255,255,0.88);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: 0.24em;
}


/* TITEL */

.botica-hero h1 {
    margin: 0;

    color: #fffaf4;

    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;

    font-weight: 500;

    text-shadow:
        0 2px 10px rgba(48,35,60,0.12);
}


/* SUBTITEL */

.botica-hero .hero-subtitle {
    margin: 15px 0 0;

    color: rgba(255,255,255,0.94);

    font-size: clamp(18px, 2vw, 23px);
    font-style: italic;
}


/* DIVIDER */

.botica-hero .hero-divider {
    width: 100px;
    height: 1px;

    margin: 27px auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,245,205,0.90),
            transparent
        );
}


/* INTRO */

.botica-hero .intro-text {
    max-width: 850px;
    margin: 0 auto;

    color: rgba(255,255,255,0.94);

    font-size: 17px;
    line-height: 1.8;
}

.botica-hero .intro-text p {
    margin: 0 0 14px;
}

.botica-hero .intro-highlight {
    margin-top: 23px !important;

    color: #ffeab1;

    font-size: 19px;
    font-style: italic;
}


/* MOBILE */

@media (max-width: 650px) {

    .botica-hero {
        padding: 38px 20px 34px;
        border-radius: 24px;
    }

    .botica-hero__logo {
        width: 92px;
        height: 92px;
    }

    .botica-hero .intro-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .botica-hero .intro-highlight {
        font-size: 17px;
    }
}


/* =========================
   CATEGORIEﾃ起
========================= */

.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    padding: 46px 30px 32px;

    border-radius: 170px 170px 30px 30px / 125px 125px 30px 30px;

    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: var(--botica-shadow);
    text-align: center;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -70px;
    right: -60px;
    background: rgba(255,255,255,0.38);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(76, 63, 44, 0.16);
}

.category-terra {
    background:
        linear-gradient(145deg, #78a982, #c7d8b3);
}

.category-lua {
    background:
        linear-gradient(145deg, #5664c9, #a68bc8);
}

.category-fogo {
    background:
        linear-gradient(145deg, #d69a3a, #e8c45b);
}

.category-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.60);
    border: 1px solid rgba(201,168,92,0.32);
    font-size: 31px;
    box-shadow: inset 0 0 18px rgba(255,255,255,0.85);
}

.category-number {
    display: block;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    color: var(--botica-gold-dark);
}

.category-card h2 {
    margin: 0 0 12px;
    font-size: 29px;
    font-weight: 500;
}

.category-tagline {
    margin: 0 0 18px;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: var(--botica-gold-dark);
}

.category-description {
    min-height: 102px;
    margin: 0 auto 28px;
    font-size: 16px;
    line-height: 1.65;
    color: #65696d;
}

.category-button {
    cursor: pointer;
    border: 1px solid rgba(168, 134, 63, 0.52);
    border-radius: 999px;
    padding: 12px 21px;
    background: rgba(255,255,255,0.60);
    color: #76602f;
    transition: 0.25s ease;
}

.category-button:hover {
    transform: translateY(-2px);
    background: #fffdf8;
    border-color: var(--botica-gold-dark);
}


/* =========================
   VEILIGHEID
========================= */

.safety-note {
    max-width: 850px;
    margin: 0 auto 48px;
    padding: 30px 34px;
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.74);
    border: 1px solid rgba(201, 168, 92, 0.30);
    box-shadow: 0 12px 30px rgba(76,63,44,0.07);
    text-align: center;
}

.safety-symbol {
    color: var(--botica-gold);
    font-size: 22px;
    margin-bottom: 8px;
}

.safety-note h3 {
    margin: 0 0 13px;
    font-size: 21px;
    font-weight: 500;
}

.safety-note p {
    margin: 0;
    color: #686b70;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   FOOTER
========================= */

.botica-footer {
    text-align: center;
    padding-top: 18px;
}

.footer-symbols {
    margin-bottom: 8px;
    color: var(--botica-gold-dark);
    letter-spacing: 0.15em;
}

.botica-footer p {
    margin: 0 0 20px;
    font-size: 15px;
    font-style: italic;
    color: var(--botica-muted);
}

.bottom-back {
    margin-top: 4px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .categories {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .category-card {
        min-height: unset;
    }

    .category-description {
        min-height: unset;
    }
}

@media (max-width: 600px) {
    .botica-page {
        width: min(100% - 20px, 1180px);
        padding-top: 16px;
    }

    .botica-hero {
        margin-bottom: 40px;
    }

    .hero-symbol {
        width: 64px;
        height: 64px;
        font-size: 29px;
    }

    .intro-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .category-card {
        padding: 30px 22px 28px;
        border-radius: 22px;
    }

    .category-card h2 {
        font-size: 26px;
    }

    .safety-note {
        padding: 25px 20px;
    }
}

/* =========================
   VIEWS
========================= */

.botica-view {
    display: none;
}

.botica-view.active-view {
    display: block;
}

.hidden-view {
    display: none;
}

.section-topbar {
    margin-bottom: 22px;
}

.button-reset {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}


/* =========================
   CATEGORY SUBPAGES
========================= */

.category-view {
    padding-bottom: 40px;
}

.category-header {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.category-ornament {
    margin: 18px auto 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    color: var(--botica-gold-dark);
    font-size: 18px;
    opacity: 0.78;
    letter-spacing: 0.08em;
}

.category-ornament::before,
.category-ornament::after {
    content: "";
    width: 62px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(194, 160, 87, 0.65),
        transparent
    );
}

.category-header-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(201,168,92,0.36);
    font-size: 34px;
    box-shadow:
        0 12px 30px rgba(76,63,44,0.08),
        inset 0 0 18px rgba(255,255,255,0.85);
}

.category-header h2 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4.8vw, 50px);
    font-weight: 500;
    line-height: 1.1;
    color: #3c4248;
}

.category-intro {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #65696d;
}


/* =========================
   TEA GRID
========================= */

.tea-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tea-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 28px 24px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 0 16px 38px rgba(76, 63, 44, 0.10);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
        display: flex;
        flex-direction: column;
}

.tea-card::before {
    content: "";
    position: absolute;
    top: -52px;
    right: -48px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,0.28);
}

.tea-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(76, 63, 44, 0.14);
}

.tea-symbol {
    font-size: 28px;
    margin-bottom: 16px;
}

.tea-card h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    color: #3f4348;
}

.tea-essence {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--botica-gold-dark);
    letter-spacing: 0.02em;
}

.tea-ideal {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #666a6f;
}

.tea-label {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(201,168,92,0.30);
    color: #7a6841;
    font-size: 12px;
    letter-spacing: 0.03em;
    margin-top: auto;
    align-self: flex-start;
}


/* =========================
   7 KLEURTONEN
========================= */

.tone-1 {
    background: linear-gradient(145deg, #dfeef5, #f4f8fa);
}

.tone-2 {
    background: linear-gradient(145deg, #fffaf2, #fdf6ea);
}

.tone-3 {
    background: linear-gradient(145deg, #f4ead2, #fcf6e8);
}

.tone-4 {
    background: linear-gradient(145deg, #eee7f5, #f7f3fb);
}

.tone-5 {
    background: linear-gradient(145deg, #e5eee4, #f3f8f2);
}

.tone-6 {
    background: linear-gradient(145deg, #efe4d5, #f9f2e9);
}

.tone-7 {
    background: linear-gradient(145deg, #f4e6e7, #fbf1f2);
}


/* =========================
   RESPONSIVE EXTRA
========================= */

@media (max-width: 980px) {
    .tea-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tea-grid {
        grid-template-columns: 1fr;
    }

    .tea-card {
        min-height: unset;
        
    }

    .tea-card h3 {
        font-size: 24px;
    }

    .category-intro {
        font-size: 16px;
    }
}

/* =========================
   RECIPE DETAIL
========================= */

.recipe-view {
    padding-bottom: 50px;
}

.recipe-panel {
    position: relative;
    overflow: hidden;

    width: min(900px, calc(100% - 32px));
    margin: 0 auto;

    padding: 38px 46px 40px;

    border-radius: 170px 170px 34px 34px / 110px 110px 34px 34px;

    border: 1px solid rgba(181, 165, 215, 0.45);

    background:
        linear-gradient(
            145deg,
            #dbe7f4 0%,
            #e5e0f3 42%,
            #f4e7f0 72%,
            #f8f2e7 100%
        );

    box-shadow:
        0 24px 55px rgba(76, 63, 90, 0.13),
        inset 0 1px 0 rgba(255,255,255,0.65);
}

.recipe-pena-azul {
    background: linear-gradient(
        145deg,
        #cfeaf7 0%,
        #b9dff2 38%,
        #d8ebf8 68%,
        #e9e3f4 100%
    );
}

.recipe-lua-serena {
    background: linear-gradient(
        145deg,
        #d8cdf4 0%,
        #bca8ea 45%,
        #eee8fa 100%
    );
}

.recipe-veu-intuicao {
    background: linear-gradient(
        145deg,
        #c9cdf0 0%,
        #9499dc 45%,
        #e7e8f8 100%
    );
}

.recipe-rosa-lua {
    background: linear-gradient(
        145deg,
        #dcefd7 0%,
        #acd49f 45%,
        #eff8ec 100%
    );
}

.recipe-orvalho-silencio {
    background: linear-gradient(
        145deg,
        #f5ebba 0%,
        #e2c96e 45%,
        #faf5d8 100%
    );
}

.recipe-caldeira-lua {
    background: linear-gradient(
        145deg,
        #f6d7b1 0%,
        #e5a65e 45%,
        #fbeddc 100%
    );
}

.recipe-aguas-sagrado-feminino {
    background: linear-gradient(
        145deg,
        #f1c9c9 0%,
        #d98989 45%,
        #f8e7e7 100%
    );
}

/* ==================================================
   RECIPE PANELS • CHÁS DA TERRA
================================================== */

/* AJNA • ÍNDIGO */
.recipe-terra-ancestralidade {
    background: linear-gradient(
        145deg,
        #e1d3f4 0%,
        #b792dc 45%,
        #f0e8f8 100%
    );
}


/* SAHASRARA • VIOLETA */
.recipe-cavalo-de-luz {
    background: linear-gradient(
        145deg,
        #d6d8f4 0%,
        #a7a9dc 45%,
        #ececf8 100%
    );
}


/* VISHUDDHA • AZUL CLARO */
.recipe-pena-branca {
    background: linear-gradient(
        145deg,
        #d9eef8 0%,
        #a9d6ed 45%,
        #edf7fb 100%
    );
}


/* ANAHATA • VERDE */
.recipe-pedra-presenca {
    background: linear-gradient(
        145deg,
        #dcefd7 0%,
        #acd49f 45%,
        #eff8ec 100%
    );
}


/* MANIPURA • AMARELO */
.recipe-jardim-girassol {
    background: linear-gradient(
        145deg,
        #f7edbd 0%,
        #e5cc73 45%,
        #fbf6dc 100%
    );
}


/* SVADHISTHANA • LARANJA */
.recipe-manto-pachamama {
    background: linear-gradient(
        145deg,
        #f5d8b7 0%,
        #e5aa68 45%,
        #fbecdc 100%
    );
}


/* MULADHARA • VERMELHO */
.recipe-raiz-da-terra {
    background: linear-gradient(
        145deg,
        #f0cccc 0%,
        #d98d8d 45%,
        #f8e7e7 100%
    );
}

/* ==================================================
   CHAVE DE HÉKATE
   ÍNDIGO • VIOLETA • MISTÉRIO
================================================== */

.jar-chave-hecate .jar-content {
    background: linear-gradient(
        180deg,
        rgba(235, 225, 250, 0.14) 0%,
        rgba(174, 142, 218, 0.30) 28%,
        rgba(112, 82, 181, 0.48) 62%,
        rgba(57, 48, 128, 0.68) 100%
    );
}

.jar-chave-hecate .jar-petal {
    background: linear-gradient(
        135deg,
        #60489f,
        #9572cf 55%,
        #d6bced
    );
}

.jar-chave-hecate .jar-flake {
    background: #b99ade;
}


/* AJNA • ÍNDIGO */
.jar-cristal-chamas .jar-content {
    background: linear-gradient(
        180deg,
        rgba(219, 222, 255, 0.14) 0%,
        rgba(112, 118, 211, 0.28) 30%,
        rgba(74, 79, 170, 0.45) 65%,
        rgba(50, 53, 128, 0.62) 100%
    );
}

.jar-cristal-chamas .jar-petal {
    background: linear-gradient(135deg, #4f53a8, #777bd2 58%, #c0c3f3);
}

.jar-cristal-chamas .jar-flake {
    background: #777bd2;
}


/* VISHUDDHA • AZUL CLARO */
.jar-caminhos-abertos .jar-content {
    background: linear-gradient(
        180deg,
        rgba(220, 245, 255, 0.14) 0%,
        rgba(116, 204, 239, 0.28) 30%,
        rgba(67, 164, 216, 0.45) 65%,
        rgba(42, 125, 180, 0.60) 100%
    );
}

.jar-caminhos-abertos .jar-petal {
    background: linear-gradient(135deg, #54a6d7, #81caed 58%, #caeefb);
}

.jar-caminhos-abertos .jar-flake {
    background: #82caed;
}


/* ANAHATA • VERDE */
.jar-caldeira-renascimento .jar-content {
    background: linear-gradient(
        180deg,
        rgba(221, 246, 217, 0.14) 0%,
        rgba(144, 207, 116, 0.28) 30%,
        rgba(91, 166, 76, 0.45) 65%,
        rgba(58, 124, 49, 0.60) 100%
    );
}

.jar-caldeira-renascimento .jar-petal {
    background: linear-gradient(135deg, #4f9845, #7bc76d 58%, #c4efba);
}

.jar-caldeira-renascimento .jar-flake {
    background: #7fc96f;
}


/* MANIPURA • AMARELO */
.jar-sol-dourado .jar-content {
    background: linear-gradient(
        180deg,
        rgba(255, 245, 191, 0.14) 0%,
        rgba(245, 215, 96, 0.28) 30%,
        rgba(224, 184, 42, 0.45) 65%,
        rgba(184, 143, 22, 0.60) 100%
    );
}

.jar-sol-dourado .jar-petal {
    background: linear-gradient(135deg, #d5aa1e, #efd04d 58%, #fff0a8);
}

.jar-sol-dourado .jar-flake {
    background: #efcf4d;
}


/* SVADHISTHANA • LARANJA */
.jar-elixir-joelma-luna .jar-content {
    background: linear-gradient(
        180deg,
        rgba(255, 238, 218, 0.16) 0%,
        rgba(246, 178, 96, 0.30) 30%,
        rgba(230, 137, 55, 0.48) 65%,
        rgba(190, 94, 28, 0.62) 100%
    );
}

.jar-elixir-joelma-luna .jar-petal {
    background: linear-gradient(
        135deg,
        #d8792f,
        #eea65d 58%,
        #ffd1a2
    );
}

.jar-elixir-joelma-luna .jar-flake {
    background: #eea65d;
}


/* MULADHARA • VERMELHO */
.jar-passos-cavalo .jar-content {
    background: linear-gradient(
        180deg,
        rgba(255, 222, 222, 0.14) 0%,
        rgba(235, 131, 131, 0.28) 30%,
        rgba(204, 72, 72, 0.45) 65%,
        rgba(158, 42, 42, 0.62) 100%
    );
}

/* ==================================================
   RECIPE PANELS • CHÁS DO FOGO
================================================== */

.recipe-chave-hecate {
    background: linear-gradient(145deg, #e1d3f4 0%, #b792dc 45%, #f0e8f8 100%);
}

.recipe-cristal-chamas {
    background: linear-gradient(145deg, #d6d8f4 0%, #a7a9dc 45%, #ececf8 100%);
}

.recipe-caminhos-abertos {
    background: linear-gradient(145deg, #d9eef8 0%, #a9d6ed 45%, #edf7fb 100%);
}

.recipe-caldeira-renascimento {
    background: linear-gradient(145deg, #dcefd7 0%, #acd49f 45%, #eff8ec 100%);
}

.recipe-sol-dourado {
    background: linear-gradient(145deg, #f7edbd 0%, #e5cc73 45%, #fbf6dc 100%);
}

.recipe-elixir-joelma-luna {
    background: linear-gradient(145deg, #f5d8b7 0%, #e5aa68 45%, #fbecdc 100%);
}

.recipe-passos-cavalo {
    background: linear-gradient(145deg, #f0cccc 0%, #d98d8d 45%, #f8e7e7 100%);
}

.jar-passos-cavalo .jar-petal {
    background: linear-gradient(135deg, #b53535, #de5a5a 58%, #f3a6a6);
}

.jar-passos-cavalo .jar-flake {
    background: #dc6666;
}

.recipe-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 34px;
}

.recipe-symbol {
    width: 78px;
    height: 78px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #dfeef5, #eee7f5);
    border: 1px solid rgba(201,168,92,0.38);
    font-size: 34px;
    box-shadow:
        0 12px 28px rgba(76,63,44,0.09),
        inset 0 0 18px rgba(255,255,255,0.85);
}

.recipe-symbol img {
    display: block;
    width: 40px;
    height: auto;
    margin: 0 auto;
}

.recipe-header h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.08;
    font-weight: 500;
    color: #3d4248;
}

.recipe-back {
    display: flex;
    width: fit-content;
    margin: 0 auto 28px;
}

.recipe-subtitle {
    margin: 14px 0 0;
    font-size: 17px;
    color: var(--botica-gold-dark);
    letter-spacing: 0.05em;
}

.recipe-opening {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #62666b;
}

.recipe-content {
    display: grid;
    gap: 18px;
}

.recipe-section {
    margin-bottom: 20px;
    padding: 28px 28px 24px;
    border-radius: 26px;
    border: 1px solid rgba(205, 184, 145, 0.36);
    background: linear-gradient(
        145deg,
        rgba(255, 252, 246, 0.96),
        rgba(248, 244, 235, 0.96)
    );
    box-shadow:
        0 12px 28px rgba(84, 73, 56, 0.05),
        inset 0 1px 0 rgba(255,255,255,0.75);
}

.altar-blue {
    background: linear-gradient(
        145deg,
        rgba(226, 241, 250, 0.95),
        rgba(243, 247, 252, 0.95)
    );
    border-color: rgba(153, 189, 219, 0.42);
}

.altar-gold {
    background: linear-gradient(
        145deg,
        rgba(251, 246, 226, 0.96),
        rgba(255, 250, 239, 0.96)
    );
    border-color: rgba(214, 182, 112, 0.42);
}

.altar-ivory {
    background: linear-gradient(
        145deg,
        rgba(255, 252, 246, 0.97),
        rgba(248, 242, 233, 0.97)
    );
    border-color: rgba(210, 189, 160, 0.34);
}

.altar-lilac {
    background: linear-gradient(
        145deg,
        rgba(237, 232, 248, 0.96),
        rgba(249, 246, 252, 0.96)
    );
    border-color: rgba(181, 165, 215, 0.42);
}

.altar-mist {
    background: linear-gradient(
        145deg,
        rgba(231, 242, 248, 0.96),
        rgba(241, 237, 248, 0.96)
    );
    border-color: rgba(176, 196, 220, 0.40);
}

.altar-sand {
    background: linear-gradient(
        145deg,
        rgba(248, 242, 228, 0.96),
        rgba(253, 249, 240, 0.96)
    );
    border-color: rgba(209, 183, 138, 0.40);
}

.recipe-section h3 {
    margin: 0 0 12px;
    font-size: 21px;
    font-weight: 500;
    color: #45494e;
}

.recipe-section p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.75;
    color: #64686d;
}

.recipe-section p + p {
    margin-top: 12px;
}

.recipe-tags {
    color: var(--botica-gold-dark) !important;
    font-style: italic;
}

.recipe-list {
    margin: 0;
    padding-left: 21px;
    color: #64686d;
}

.recipe-list li {
    margin-bottom: 9px;
    line-height: 1.6;
}

.recipe-list li:last-child {
    margin-bottom: 0;
}

.recipe-highlight {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        rgba(223,238,245,0.72),
        rgba(238,231,245,0.72)
    );
    border: 1px solid rgba(201,168,92,0.22);
    color: #5d6268;
    line-height: 1.7;
}


/* INTENÇÃO */

.recipe-intention {
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(223,238,245,0.82),
            rgba(238,231,245,0.76)
        );
}

.small-label {
    display: block;
    margin-bottom: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: 0.19em;
    color: var(--botica-gold-dark);
}

.recipe-intention blockquote {
    margin: 0;
    font-size: clamp(21px, 3vw, 28px);
    line-height: 1.5;
    font-style: italic;
    color: #4c5258;
}


/* FRASE DA BOTICA */

.recipe-portal-phrase {
    text-align: center;
    background: linear-gradient(
        145deg,
        rgba(244,234,210,0.65),
        rgba(255,250,242,0.8)
    );
}

.recipe-portal-phrase p {
    font-size: 18px;
    font-style: italic;
    color: #665c4a;
}


/* WAARSCHUWING */

.recipe-warning {
    background: rgba(247,241,230,0.75);
    border-color: rgba(168,134,63,0.25);
}

.recipe-warning h3::before {
    content: "✧ ";
    color: var(--botica-gold);
}


/* FOOTER */

.recipe-footer {
    margin-top: 34px;
    text-align: center;
}

.recipe-footer .footer-symbols {
    margin-bottom: 12px;
}


/* CLICKABLE TEA */

.clickable-tea {
    cursor: pointer;
}

.clickable-tea:hover {
    transform: translateY(-7px);
}

.clickable-tea::after {
    content: "Abrir receita";
    position: absolute;
    right: 100px;
    bottom: 28px;
    opacity: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(122,104,65,0.75);
    transition: opacity 0.2s ease;
}

.clickable-tea:hover::after {
    opacity: 1;
}


/* MOBILE */

@media (max-width: 680px) {
    .recipe-panel {
        padding: 30px 18px 28px;
        border-radius: 23px;
    }

    .recipe-section {
        padding: 21px 18px;
    }

    .recipe-opening {
        font-size: 15px;
    }

    .recipe-symbol {
        width: 68px;
        height: 68px;
        font-size: 30px;
    }

    .recipe-portal-phrase p {
        font-size: 16px;
    }
}

/* ==================================================
   BOTICA - POTE PROTÓTIPO
================================================== */

.herb-jar {
    position: relative;
    width: 285px;
    height: 390px;
    margin: 20px auto 35px;
    cursor: pointer;
    transition: transform 0.28s ease;
}

.herb-jar:hover {
    transform: translateY(-7px);
}


/* ==================================================
   TAMPA
================================================== */

.jar-lid {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 50%;
    width: 205px;
    height: 52px;
    transform: translateX(-50%);
    border-radius: 16px 16px 8px 8px;
    background: linear-gradient(
        180deg,
        #f6df92 0%,
        #ddb04d 22%,
        #b88224 50%,
        #c99634 72%,
        #efca71 100%
    );
    border: 1px solid rgba(126, 89, 25, 0.35);
    box-shadow:
        inset 0 6px 8px rgba(255,255,255,0.42),
        inset 0 -5px 6px rgba(91,61,17,0.18),
        0 6px 12px rgba(74,56,29,0.15);
}

.jar-lid::before,
.jar-lid::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;

    height: 1px;

    background: rgba(111,76,22,0.26);
}

.jar-lid::before {
    top: 13px;
}

.jar-lid::after {
    bottom: 11px;
}


/* ==================================================
   VIDRO
================================================== */

.jar-glass {
    position: absolute;

    left: 50%;
    top: 38px;

    width: 250px;
    height: 325px;

    transform: translateX(-50%);

    overflow: hidden;

    border-radius:
        33px 33px 48px 48px;

    border:
        2px solid rgba(255,255,255,0.76);

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.46) 0%,
            rgba(255,255,255,0.13) 17%,
            rgba(104,193,238,0.25) 48%,
            rgba(255,255,255,0.16) 82%,
            rgba(255,255,255,0.48) 100%
        );

    box-shadow:
        inset 13px 0 22px rgba(255,255,255,0.30),
        inset -12px 0 20px rgba(69,123,160,0.10),
        inset 0 -17px 22px rgba(49,105,145,0.09),
        0 22px 38px rgba(52,72,88,0.16);
}


/* glazen rand bovenaan */

.jar-glass::before {
    content: "";
    position: absolute;

    left: 18px;
    right: 18px;
    top: 8px;

    height: 17px;

    border-radius: 50%;

    border-top:
        2px solid rgba(255,255,255,0.74);

    opacity: 0.8;
}


/* ==================================================
   BLAUWE KRUIDEN / BLOEMEN IN POT
================================================== */

.jar-content {
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 12px;
    height: 160px;
    overflow: hidden;
    border-radius: 26px 26px 38px 38px;
    background: linear-gradient(
        180deg,
        rgba(127, 215, 248, 0.28) 0%,
        rgba(77, 179, 230, 0.52) 38%,
        rgba(33, 127, 198, 0.78) 100%
    );
}


/* losse kruidvormpjes */

/* ==================================================
   CONTEÚDO DO POTE - PÉTALAS / ERVAS
================================================== */

/* ==================================================
   CONTEÚDO DO POTE - BUTTERFLY PEA CHIQUE
================================================== */

.jar-content {
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 12px;
    height: 160px;
    overflow: hidden;
    border-radius: 26px 26px 38px 38px;
    background:
        linear-gradient(
            180deg,
            rgba(146, 224, 250, 0.10) 0%,
            rgba(90, 190, 236, 0.22) 28%,
            rgba(44, 137, 208, 0.34) 55%,
            rgba(28, 113, 188, 0.48) 100%
        );
}

/* zachte basislaag onderin */
.jar-content::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -6px;
    height: 58px;
    border-radius: 50%;
    background: rgba(26, 99, 170, 0.18);
    filter: blur(10px);
}

/* extra diepte achterin */
.jar-content::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    height: 80px;
    border-radius: 24px 24px 32px 32px;
    background: linear-gradient(
        180deg,
        rgba(49, 152, 218, 0.18),
        rgba(21, 98, 176, 0.30)
    );
}


/* ==================================================
   GROTERE GEDROOGDE BLAADBLAADJES
================================================== */

.jar-petal {
    position: absolute;
    display: block;
    opacity: 0.95;
    box-shadow: 0 2px 4px rgba(20, 67, 109, 0.10);
}

/* type A */
.petal-1,
.petal-4,
.petal-7,
.petal-10 {
    width: 54px;
    height: 20px;
    background: linear-gradient(135deg, #1a68b8, #4eb4e7 58%, #9de5f7);
    border-radius: 62% 38% 58% 42% / 42% 64% 36% 58%;
    clip-path: polygon(0 48%, 18% 18%, 58% 0, 100% 34%, 83% 78%, 38% 100%, 9% 72%);
}

/* type B */
.petal-2,
.petal-5,
.petal-8 {
    width: 44px;
    height: 17px;
    background: linear-gradient(135deg, #2d89d5, #75cdf0 62%, #c7f2fb);
    border-radius: 54% 46% 68% 32% / 34% 68% 32% 66%;
    clip-path: polygon(0 52%, 20% 18%, 70% 6%, 100% 46%, 80% 84%, 32% 100%, 6% 72%);
}

/* type C */
.petal-3,
.petal-6,
.petal-9 {
    width: 60px;
    height: 23px;
    background: linear-gradient(135deg, #145ca9, #3898d8 55%, #7ed3ed);
    border-radius: 44% 56% 61% 39% / 58% 36% 64% 42%;
    clip-path: polygon(0 50%, 16% 18%, 62% 0, 100% 28%, 89% 77%, 44% 100%, 10% 78%);
}


/* posities */

.petal-1 {
    left: 8px;
    bottom: 10px;
    transform: rotate(13deg);
}

.petal-2 {
    left: 42px;
    bottom: 6px;
    transform: rotate(-12deg);
}

.petal-3 {
    left: 88px;
    bottom: 15px;
    transform: rotate(20deg);
}

.petal-4 {
    right: 8px;
    bottom: 12px;
    transform: rotate(-18deg);
}

.petal-5 {
    left: 24px;
    bottom: 48px;
    transform: rotate(-24deg);
}

.petal-6 {
    left: 84px;
    bottom: 54px;
    transform: rotate(9deg);
}

.petal-7 {
    right: 20px;
    bottom: 46px;
    transform: rotate(28deg);
}

.petal-8 {
    left: 118px;
    bottom: 88px;
    transform: rotate(-11deg);
}

.petal-9 {
    right: 54px;
    bottom: 74px;
    transform: rotate(12deg);
}

.petal-10 {
    left: 150px;
    bottom: 34px;
    transform: rotate(-20deg);
}


/* ==================================================
   KLEINE FRAGMENTEN / SNIPPERS
================================================== */

.jar-flake {
    position: absolute;
    display: block;
    opacity: 0.84;
    box-shadow: 0 1px 2px rgba(20, 67, 109, 0.08);
}

.flake-1,
.flake-4,
.flake-7 {
    width: 16px;
    height: 8px;
    background: #9de1f6;
    border-radius: 58% 42% 63% 37% / 46% 58% 42% 54%;
}

.flake-2,
.flake-5,
.flake-8 {
    width: 12px;
    height: 7px;
    background: #58bbe7;
    border-radius: 64% 36% 42% 58% / 36% 67% 33% 64%;
}

.flake-3,
.flake-6 {
    width: 10px;
    height: 6px;
    background: #2f8dd0;
    border-radius: 46% 54% 58% 42% / 58% 36% 64% 42%;
}

.flake-1 {
    left: 28px;
    bottom: 78px;
    transform: rotate(18deg);
}

.flake-2 {
    left: 62px;
    bottom: 36px;
    transform: rotate(-28deg);
}

.flake-3 {
    left: 152px;
    bottom: 70px;
    transform: rotate(20deg);
}

.flake-4 {
    right: 34px;
    bottom: 82px;
    transform: rotate(-12deg);
}

.flake-5 {
    right: 58px;
    bottom: 26px;
    transform: rotate(32deg);
}

.flake-6 {
    left: 130px;
    bottom: 112px;
    transform: rotate(-16deg);
}

.flake-7 {
    right: 96px;
    bottom: 96px;
    transform: rotate(8deg);
}

.flake-8 {
    left: 96px;
    bottom: 126px;
    transform: rotate(-5deg);
}


/* ==================================================
   GLANS OP HET GLAS
================================================== */

.jar-shine {
    position: absolute;

    top: 30px;
    left: 22px;

    width: 26px;
    height: 205px;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.70),
            rgba(255,255,255,0.04)
        );

    opacity: 0.50;

    transform: rotate(4deg);

    pointer-events: none;
}


/* ==================================================
   ETIKET
================================================== */

.jar-label {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 55px;
    width: 205px;
    min-height: 138px;
    transform: translateX(-50%);
    padding: 17px 16px;
    text-align: center;
    border-radius: 12px;
    background: linear-gradient(
        145deg,
        rgba(251, 245, 228, 0.98),
        rgba(242, 229, 194, 0.98)
    );
    border: 1px solid rgba(179, 141, 63, 0.48);
    box-shadow: 0 9px 20px rgba(63, 52, 33, 0.13);
}

.jar-label::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(190, 151, 74, 0.26);
    border-radius: 8px;
    pointer-events: none;
}

.jar-label h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.08;
    font-weight: 500;
    color: #3f4851;
}

.jar-label p {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    font-size: 10px;
    color: #a37930;
    line-height: 1.4;
}

.jar-label span {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(183,142,60,0.28);
    font-size: 9px;
    color: #7a6743;
}

.jar-symbol {
    position: relative;
    z-index: 2;
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 28px;
}

.jar-symbol img {
    display: block;
    width: 30px;
    height: auto;
}


/* ==================================================
   SCHADUW ONDER POT
================================================== */

.jar-shadow {
    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 205px;
    height: 21px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(60,69,75,0.14);

    filter: blur(8px);

    z-index: -1;
}


/* ==================================================
   HOVER GLANS
================================================== */

.herb-jar:hover .jar-glass {
    box-shadow:
        inset 13px 0 22px rgba(255,255,255,0.37),
        inset -12px 0 20px rgba(69,123,160,0.10),
        inset 0 -17px 22px rgba(49,105,145,0.09),
        0 27px 48px rgba(52,72,88,0.21);
}

.herb-jar:hover .jar-shine {
    opacity: 0.70;
}


/* MOBIEL */

@media (max-width: 600px) {

    .herb-jar {
        transform: scale(0.92);
        transform-origin: top center;
        margin-bottom: 0;
    }

    .herb-jar:hover {
        transform:
            scale(0.92)
            translateY(-5px);
    }
}

/* ==================================================
   STAGE DOS POTES
================================================== */

.jar-stage {
    position: relative;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.altar-shelves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.altar-shelf {
    position: absolute;
    left: 12%;
    right: 12%;
    height: 14px;
    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            #d8b786 0%,
            #bd8b54 45%,
            #98633a 100%
        );

    box-shadow:
        0 8px 18px rgba(83, 55, 32, 0.16),
        inset 0 1px 1px rgba(255,255,255,0.28);
}

.shelf-1 {
    top: 26.5%;
}

.shelf-2 {
    top: 61.2%;
}

.shelf-3 {
    top: 95.75%;
}

/* ==================================================
   GRID DOS POTES - 2 / 3 / 2
================================================== */



.jar-grid {
    position: relative;
    display: block;

    width: min(1080px, calc(100% - 40px));
    margin: 42px auto 0;

    z-index: 1;
}

.jar-row {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;

    width: 100%;
}

.jar-row + .jar-row {
    margin-top: 54px;
}

.jar-row .herb-jar {
    flex: 0 0 285px;
    margin: 20px 0 35px;
}



/* MOBIEL */
@media (max-width: 620px) {

    .jar-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   7 POTES • 7 CHAKRA-KLEUREN
   gekoppeld aan de werking van elke infusão
================================================== */


/* 1. ÁGUAS DO SAGRADO FEMININO
   Wortelchakra • rood
   segurança • acolhimento • base feminina
----------------------------------- */
.jar-aguas-sagrado-feminino .jar-content {
    background: linear-gradient(
        180deg,
        rgba(255, 222, 222, 0.14) 0%,
        rgba(235, 131, 131, 0.28) 30%,
        rgba(204, 72, 72, 0.45) 65%,
        rgba(158, 42, 42, 0.62) 100%
    );
}

.jar-aguas-sagrado-feminino .jar-petal {
    background: linear-gradient(
        135deg,
        #b53535,
        #de5a5a 58%,
        #f3a6a6
    );
}

.jar-aguas-sagrado-feminino .jar-flake {
    background: #dc6666;
}


/* 2. CALDEIRA DA LUA
   Sacraalchakra • oranje
   transformação • fluidez • criatividade
----------------------------------- */
.jar-caldeira-da-lua .jar-content {
    background: linear-gradient(
        180deg,
        rgba(255, 230, 194, 0.14) 0%,
        rgba(247, 175, 90, 0.28) 30%,
        rgba(229, 127, 36, 0.45) 65%,
        rgba(181, 88, 18, 0.62) 100%
    );
}

.jar-caldeira-da-lua .jar-petal {
    background: linear-gradient(
        135deg,
        #cd7218,
        #ee9c40 58%,
        #ffd094
    );
}

.jar-caldeira-da-lua .jar-flake {
    background: #ee9b42;
}


/* 3. ORVALHO DO SILÊNCIO
   Zonnevlechtchakra • geel
   presença • leveza • centramento
----------------------------------- */
.jar-orvalho-do-silencio .jar-content {
    background: linear-gradient(
        180deg,
        rgba(255, 243, 191, 0.14) 0%,
        rgba(244, 214, 94, 0.28) 30%,
        rgba(222, 181, 39, 0.45) 65%,
        rgba(182, 142, 20, 0.60) 100%
    );
}

.jar-orvalho-do-silencio .jar-petal {
    background: linear-gradient(
        135deg,
        #d3aa19,
        #efd04c 58%,
        #fff0a7
    );
}

.jar-orvalho-do-silencio .jar-flake {
    background: #ebcc4d;
}


/* ==================================================
   4. ROSA DA LUA
   RUBI • VINHO • ROSA QUEIMADO
================================================== */

/* ROSA DA LUA • GROEN */
.jar-rosa-da-lua .jar-content {
    background: linear-gradient(
        180deg,
        rgba(221, 246, 217, 0.14) 0%,
        rgba(144, 207, 116, 0.28) 30%,
        rgba(91, 166, 76, 0.45) 65%,
        rgba(58, 124, 49, 0.60) 100%
    );
}

.jar-rosa-da-lua .jar-petal {
    background: linear-gradient(
        135deg,
        #4f9845,
        #7bc76d 58%,
        #c4efba
    );
}

.jar-rosa-da-lua .jar-flake {
    background: #7fc96f;
}

/* 5. INFUSÃO PENA AZUL
   Keelchakra • lichtblauw
   voz • expressão • verdade
----------------------------------- */
.jar-pena-azul .jar-content {
    background: linear-gradient(
        180deg,
        rgba(201, 241, 255, 0.14) 0%,
        rgba(109, 205, 245, 0.28) 30%,
        rgba(58, 162, 227, 0.45) 65%,
        rgba(30, 115, 194, 0.62) 100%
    );
}

.jar-pena-azul .jar-petal {
    background: linear-gradient(
        135deg,
        #1b7fd6,
        #47b6f1 58%,
        #a4ebff
    );
}

.jar-pena-azul .jar-flake {
    background: #59c1f1;
}


/* 6. VÉU DA INTUIÇÃO
   Voorhoofdchakra • indigo
   percepção • intuição • escuta
----------------------------------- */
.jar-veu-da-intuicao .jar-content {
    background: linear-gradient(
        180deg,
        rgba(223, 226, 255, 0.14) 0%,
        rgba(129, 141, 229, 0.28) 30%,
        rgba(76, 92, 201, 0.45) 65%,
        rgba(49, 60, 153, 0.62) 100%
    );
}

.jar-veu-da-intuicao .jar-petal {
    background: linear-gradient(
        135deg,
        #4455c3,
        #7180e5 58%,
        #c1c8fb
    );
}

.jar-veu-da-intuicao .jar-flake {
    background: #7a87e1;
}


/* 7. LUA SERENA
   Kruinchakra • violet
   serenidade • silêncio • consciência
----------------------------------- */
.jar-lua-serena .jar-content {
    background: linear-gradient(
        180deg,
        rgba(239, 226, 255, 0.14) 0%,
        rgba(184, 151, 236, 0.28) 30%,
        rgba(134, 96, 213, 0.45) 65%,
        rgba(93, 64, 174, 0.60) 100%
    );
}

.jar-lua-serena .jar-petal {
    background: linear-gradient(
        135deg,
        #7350c4,
        #a181e6 58%,
        #decffd
    );
}

.jar-lua-serena .jar-flake {
    background: #a589e8;
}

/* ==================================================
   CHÁS DA TERRA • 7 CHAKRA-KLEUREN
================================================== */

/* AJNA — ÍNDIGO */
.jar-terra-ancestralidade .jar-content {
    background: linear-gradient(
        180deg,
        rgba(235, 225, 250, 0.14) 0%,
        rgba(174, 142, 218, 0.30) 28%,
        rgba(112, 82, 181, 0.48) 62%,
        rgba(57, 48, 128, 0.68) 100%
    );
}

.jar-terra-ancestralidade .jar-petal {
    background: linear-gradient(
        135deg,
        #60489f,
        #9572cf 55%,
        #d6bced
    );
}

.jar-terra-ancestralidade .jar-flake {
    background: #b99ade;
}


/* SAHASRARA — VIOLETA */
.jar-cavalo-de-luz .jar-content {
    background: linear-gradient(
        180deg,
        rgba(219, 222, 255, 0.14) 0%,
        rgba(112, 118, 211, 0.28) 30%,
        rgba(74, 79, 170, 0.45) 65%,
        rgba(50, 53, 128, 0.62) 100%
    );
}

.jar-cavalo-de-luz .jar-petal {
    background: linear-gradient(
        135deg,
        #4f53a8,
        #777bd2 58%,
        #c0c3f3
    );
}

.jar-cavalo-de-luz .jar-flake {
    background: #777bd2;
}


/* VISHUDDHA — AZUL CLARO */
.jar-pena-branca .jar-content {
    background: linear-gradient(
        180deg,
        rgba(219, 245, 255, 0.14) 0%,
        rgba(116, 204, 239, 0.28) 30%,
        rgba(67, 164, 216, 0.45) 65%,
        rgba(42, 125, 180, 0.60) 100%
    );
}

.jar-pena-branca .jar-petal {
    background: linear-gradient(135deg, #54a6d7, #81caed 58%, #c9eefb);
}

.jar-pena-branca .jar-flake {
    background: #82caed;
}


/* ANAHATA — VERDE */
.jar-pedra-presenca .jar-content {
    background: linear-gradient(
        180deg,
        rgba(221, 246, 217, 0.14) 0%,
        rgba(144, 207, 116, 0.28) 30%,
        rgba(91, 166, 76, 0.45) 65%,
        rgba(58, 124, 49, 0.60) 100%
    );
}

.jar-pedra-presenca .jar-petal {
    background: linear-gradient(135deg, #4f9845, #7bc76d 58%, #c4efba);
}

.jar-pedra-presenca .jar-flake {
    background: #7fc96f;
}


/* MANIPURA — AMARELO */
.jar-jardim-girassol .jar-content {
    background: linear-gradient(
        180deg,
        rgba(255, 245, 191, 0.14) 0%,
        rgba(245, 215, 96, 0.28) 30%,
        rgba(224, 184, 42, 0.45) 65%,
        rgba(184, 143, 22, 0.60) 100%
    );
}

.jar-jardim-girassol .jar-petal {
    background: linear-gradient(135deg, #d5aa1e, #efd04d 58%, #fff0a8);
}

.jar-jardim-girassol .jar-flake {
    background: #efcf4d;
}


/* SVADHISTHANA — LARANJA */
.jar-manto-pachamama .jar-content {
    background: linear-gradient(
        180deg,
        rgba(255, 231, 205, 0.14) 0%,
        rgba(241, 166, 87, 0.28) 30%,
        rgba(213, 119, 42, 0.45) 65%,
        rgba(169, 82, 24, 0.60) 100%
    );
}

.jar-manto-pachamama .jar-petal {
    background: linear-gradient(135deg, #c96f26, #e69a4e 58%, #f5c998);
}

.jar-manto-pachamama .jar-flake {
    background: #e69a4e;
}


/* MULADHARA — ROOD */
.jar-raiz-da-terra .jar-content {
    background: linear-gradient(
        180deg,
        rgba(255, 222, 222, 0.14) 0%,
        rgba(235, 131, 131, 0.28) 30%,
        rgba(204, 72, 72, 0.45) 65%,
        rgba(158, 42, 42, 0.62) 100%
    );
}

.jar-raiz-da-terra .jar-petal {
    background: linear-gradient(135deg, #b53535, #de5a5a 58%, #f3a6a6);
}

.jar-raiz-da-terra .jar-flake {
    background: #dc6666;
}

/* ==================================================
   MOBILE / TABLET — BOTICA
================================================== */

@media (max-width: 768px) {

  /* Algemene pagina */
  .botica-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
  }


  /* ==================================================
     BOVENSTE TERUGKNOP
  ================================================== */

  .top-navigation {
    top: 14px;
    left: 12px;
  }

  .top-navigation .back-button {
    font-size: 12px;
    padding: 8px 12px;
  }


  /* ==================================================
     HERO
  ================================================== */

  .botica-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .botica-hero__logo {
    width: 110px;
    height: 110px;
  }

  .botica-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .intro-text {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.65;
  }


  /* ==================================================
     3 HOOFDCATEGORIEËN
  ================================================== */

  .categories {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .category-card {
    width: 100%;
    max-width: 430px;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;

    padding: 38px 22px 28px;

    border-radius:
      120px 120px 28px 28px /
      90px 90px 28px 28px;
  }

  .category-card h2 {
    font-size: 1.8rem;
  }


  /* ==================================================
     CATEGORY HEADER
  ================================================== */

  .category-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .category-header h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.1;
  }

  .category-intro {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .category-back {
    margin-top: 12px;
    margin-bottom: 18px;
  }


  /* ==================================================
     POTTEN / ALTAREN
  ================================================== */

  .jar-stage {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .jar-grid {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .jar-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .jar-row + .jar-row {
    margin-top: 24px;
  }

  .jar-row .herb-jar {
    flex: 0 0 auto;
    width: 250px;
    height: 350px;
    margin: 10px 0 28px;
  }

  .herb-jar {
    width: 250px;
    height: 350px;
  }

  .jar-glass {
    width: 220px;
    height: 290px;
  }

  .jar-label {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 176px;
    max-width: calc(100% - 30px);
  }

  .jar-label h3 {
    font-size: 1.05rem;
    line-height: 1.1;
  }

  .jar-label p {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .jar-label span {
    font-size: 0.65rem;
  }


  /* ==================================================
     HOUTEN PLANKEN
  ================================================== */

  .altar-shelf {
    left: 6%;
    right: 6%;
  }


  /* ==================================================
     RECEPTPAGINA
  ================================================== */

  .recipe-view {
    padding-left: 10px;
    padding-right: 10px;
  }

  .recipe-panel {
    width: calc(100% - 20px);
    max-width: 100%;

    margin-left: auto;
    margin-right: auto;

    padding: 30px 18px 28px;

    border-radius:
      105px 105px 28px 28px /
      72px 72px 28px 28px;
  }

  .recipe-header {
    padding-left: 4px;
    padding-right: 4px;
  }

  .recipe-header h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    line-height: 1.05;
  }

  .recipe-subtitle,
  .recipe-opening {
    max-width: 100%;
  }

  .recipe-content {
    width: 100%;
  }

  .recipe-section {
    padding: 20px 16px;
  }

  .recipe-section h3 {
    font-size: 1.25rem;
  }

  .recipe-list {
    padding-left: 20px;
  }

  .recipe-intention blockquote {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .recipe-back,
  .recipe-footer .back-button {
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }


  /* ==================================================
     HOVER LABELS RECHTER KNOPPEN
     Op mobiel niet nodig
  ================================================== */

  #biblioteca-button::after,
  #botica-button::after {
    display: none;
  }

}


/* ==================================================
   MOBIEL — BOTICA
================================================== */

@media screen and (max-width: 768px) {

    /* ------------------------------------------
       PLANKEN
    ------------------------------------------ */

    .altar-shelves {
        display: none;
    }


    /* ------------------------------------------
       GRID / RIJEN
    ------------------------------------------ */

    .jar-grid {
        width: 100% !important;
        max-width: 100% !important;

        margin: 24px auto 0 !important;
        padding: 0 10px !important;

        box-sizing: border-box !important;
    }

    .jar-row {
        display: flex !important;

        flex-direction: column !important;
        flex-wrap: nowrap !important;

        align-items: center !important;
        justify-content: flex-start !important;

        gap: 26px !important;

        width: 100% !important;
    }

    .jar-row + .jar-row {
        margin-top: 24px !important;
    }


    /* ------------------------------------------
       POTJES
    ------------------------------------------ */

    .herb-jar,
    .jar-row .herb-jar {
        position: relative;

        flex: 0 0 auto !important;

        width: 250px !important;
        max-width: 250px !important;
        min-width: 250px !important;

        margin: 20px auto 42px !important;
    }


    /* ------------------------------------------
       GLAS
    ------------------------------------------ */

    .jar-glass {
        width: 220px;
        height: 300px;
    }


    /* ------------------------------------------
       DEKSEL
    ------------------------------------------ */

    .jar-lid {
        width: 160px;
        height: 38px;
    }


    /* ------------------------------------------
       THEE / KRUIDEN
    ------------------------------------------ */

    .jar-content {
        height: 150px !important;
        bottom: 10px !important;
    }


    /* ------------------------------------------
       ETIKET
    ------------------------------------------ */

    .jar-label {
        position: absolute !important;

        left: 50% !important;
        top: px !important;

        width: 98% !important;
        max-width: none !important;

        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;

        padding: 7px 10px 7px !important;

        transform: translateX(-50%) !important;
        transform-origin: top center !important;

        border-radius: 14px;
    }

    .jar-symbol {
        font-size: 12px !important;
        margin-bottom: 2px !important;
    }

    .jar-label h3 {
        font-size: 13px !important;
        line-height: 1.07 !important;

        margin: 1px 0 4px !important;
    }

    .jar-label p {
        font-size: 9px !important;
        line-height: 1.13 !important;

        margin: 0 0 5px !important;
    }

    .jar-label span {
        display: inline-block;

        font-size: 8px !important;
        line-height: 1.08 !important;

        padding: 3px 7px !important;
    }


    /* ------------------------------------------
       LOS PLANKJE ONDER ELK POTJE
    ------------------------------------------ */

    .herb-jar::after {
        content: "";

        position: absolute;

        left: 50%;
        bottom: -16px;

        transform: translateX(-50%);

        width: 270px;
        height: 10px;

        border-radius: 999px;

        background:
            linear-gradient(
                180deg,
                #d8b06f 0%,
                #b98443 55%,
                #9f6c36 100%
            );

        box-shadow:
            0 10px 18px rgba(73, 46, 21, 0.18),
            inset 0 1px 1px rgba(255,255,255,0.35);

        z-index: 0;
    }


  /* Pot blijft voor het plankje */
.jar-lid {
    position: absolute !important;
    z-index: 5 !important;
}

.jar-glass {
    position: absolute !important;
    z-index: 2 !important;
}

.jar-shadow {
    position: absolute !important;
    z-index: -1 !important;
}


    /* ------------------------------------------
       ABRIR RECEITA
    ------------------------------------------ */

    .clickable-tea::after {
        bottom: 18px;
        font-size: 10px;
    }


    /* ------------------------------------------
       GOOGLE TRANSLATE
    ------------------------------------------ */

    .goog-te-banner-frame,
    iframe.goog-te-banner-frame,
    .VIpgJd-ZVi9od-ORHb-OEVmcd,
    #goog-gt-tt,
    .goog-te-balloon-frame,
    .VIpgJd-yAWNEb-L7lbkb,
    .VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        height: 0 !important;
    }

    .goog-text-highlight {
        background: transparent !important;
        box-shadow: none !important;
    }

    html,
    body {
        top: 0 !important;
        margin-top: 0 !important;
    }
}


/* ==================================================
   EXTRA KLEINE TELEFOONS
================================================== */

@media screen and (max-width: 420px) {

    .herb-jar,
    .jar-row .herb-jar {
        width: 230px !important;
        min-width: 230px !important;
        max-width: 230px !important;
        height: 330px;
    }

    .jar-glass {
        width: 205px;
        height: 275px;
    }

    .jar-lid {
        width: 155px;
    }

    .herb-jar::after {
        width: 250px;
    }

    .recipe-panel {
        width: calc(100% - 12px);
        padding-left: 14px;
        padding-right: 14px;
    }

    .category-card {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* ==================================================
   EXTRA SAFARI / IPHONE
================================================== */

@supports (-webkit-touch-callout: none) {

    @media screen and (max-width: 768px) {

        .jar-row {
            display: flex !important;
            flex-direction: column !important;
            flex-wrap: nowrap !important;
        }

        .jar-row .herb-jar {
            flex: none !important;
        }
    }
}

@media screen and (max-width: 768px) {
    .herb-jar::after {
        content: "" !important;
        display: block !important;

        position: absolute !important;
        left: 50% !important;
        bottom: -16px !important;
        transform: translateX(-50%) !important;

        width: 118% !important;
        height: 10px !important;

        border-radius: 999px !important;

        background: linear-gradient(
            180deg,
            #d8b06b 0%,
            #bf8a4d 100%
        ) !important;

        box-shadow:
            0 8px 18px rgba(83, 55, 32, 0.16),
            inset 0 1px 1px rgba(255,255,255,0.28) !important;

        z-index: 0 !important;
        pointer-events: none !important;
    }
}

@media screen and (max-width: 768px) {

    .herb-jar {
        position: relative !important;
        overflow: visible !important;
    }

    /* Vast plankje onder ieder mobiel potje */
    .herb-jar::before {
        content: "" !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

        position: absolute !important;
        left: 50% !important;
        bottom: 5px !important;

        transform: translateX(-50%) !important;

        width: 270px !important;
        height: 11px !important;

        border-radius: 999px !important;

        background: linear-gradient(
            180deg,
            #d8b06f 0%,
            #b98443 55%,
            #9f6c36 100%
        ) !important;

        box-shadow:
            0 8px 18px rgba(73, 46, 21, 0.22),
            inset 0 1px 1px rgba(255,255,255,0.40) !important;

        z-index: 1 !important;
        pointer-events: none !important;
    }

    /* Pot blijft boven het plankje */
    .jar-lid,
    .jar-glass,
    .jar-label {
        z-index: 2 !important;
    }
}

@media screen and (max-width: 768px) {
    .herb-jar::after,
    .clickable-tea::after,
    .clickable-tea:hover::after,
    .clickable-tea:active::after,
    .clickable-tea:focus::after {
        content: none !important;
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}