html {
    overflow-x: hidden;
}

.page-wrapper {
    max-width: 100vw;
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    color: var(--color-text);
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: var(--font-base);
    line-height: var(--lh-loose);
    color: var(--color-text);
    background-color: #fff;
    overflow-x: hidden;
    touch-action: pan-y;
}

a {
    color: var(--color-link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

p {
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
    color: var(--color-text);
    margin-bottom: var(--sp-sm);
}

ul,
ol {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
    margin-bottom: var(--sp-sm);
    padding-left: var(--sp-md);
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li {
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
    color: var(--color-text);
}

.bold {
    font-weight: var(--fw-bold);
}

.strong {
    font-weight: var(--fw-strong);
}

.header {
    background: #f2f4f7;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--sp-sm) var(--sp-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-apotheken {
    height: 14px;
    width: auto;
}

.logo-gesundheitstipps {
    height: 14px;
    width: auto;
}

.logo-tagline {
    height: 7px;
    width: auto;
}

.main {
    padding: var(--sp-xs) 0 var(--sp-md);
    max-width: 1440px;
    margin: 0 auto;
}

.article {
    max-width: 750px;
    margin: 0 auto;
    padding: var(--sp-sm) var(--sp-sm) var(--sp-md);
}

.article-container {
    max-width: 100%;
}

.article-title {
    font-size: var(--font-3xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: var(--color-text);
    margin-bottom: var(--sp-md);
}

.article-subtitle {
    font-size: var(--font-lg);
    font-weight: var(--fw-normal);
    line-height: var(--lh-snug);
    color: var(--color-text);
    margin-top: 0;
    margin-bottom: var(--sp-md);
}

.callout-red {
    width: 100%;
    background: #c62e2e;
    border: 3px solid #471717;
    min-height: 101px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-sm) var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
    box-sizing: border-box;
}

.callout-red p {
    font-size: var(--font-md);
    font-weight: var(--fw-bold);
    color: #fff;
    margin: 0;
    line-height: var(--lh-snug);
    text-align: center;
}

.callout-yellow {
    background: #f3c370;
    border: 3px solid #795008;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.callout-yellow > p {
    font-weight: var(--fw-bold);
    color: #000;
    margin-bottom: var(--sp-xs);
}

.callout-gray {
    background: #ececec;
    border: 3px solid #8a8a8a;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.callout-gray p,
.callout-gray li {
    font-size: var(--font-base);
    color: #000;
    line-height: var(--lh-normal);
}

.callout-gray p {
    margin-bottom: var(--sp-sm);
}

.callout-gray ul {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    padding-left: 0;
    list-style: none;
}

.callout-gray ul li {
    margin-bottom: 0;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
}

.step-badge {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #c62e2e;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    color: #fff;
}

.step-list-heading {
    font-size: var(--font-xl);
    line-height: var(--lh-snug);
}

.step-title {
    font-size: var(--font-lg);
    font-weight: var(--fw-bold);
    color: #000;
    margin-bottom: 4px;
    line-height: var(--lh-snug);
}

.step-item p:not(.step-title) {
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    color: #000;
    margin: 0;
    line-height: var(--lh-normal);
}

.callout-yellow ul {
    padding-left: var(--sp-md);
    margin-bottom: 0;
}

.callout-yellow li {
    color: #000;
}


.section-heading {
    font-size: var(--font-2xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    color: #000;
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-sm);
}

.product-card {
    background: #f9fbfd;
    border: 4px solid #d8e3ee;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.timeline-card {
    background: #cae1cd;
    border: 4px solid #1c4621;
    border-radius: var(--radius-xl);
    padding: var(--sp-md) var(--sp-sm);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.timeline-card p {
    font-size: var(--font-md);
    line-height: var(--lh-normal);
    color: #000;
    margin-bottom: var(--sp-xs);
}

.timeline-card p:last-child {
    margin-bottom: 0;
}

.timeline-card .timeline-label {
    font-weight: var(--fw-normal);
    margin-bottom: var(--sp-md);
}

.timeline-heading {
    font-weight: var(--fw-bold);
}

.product-card ul {
    list-style: none;
    padding-left: 0;
    gap: var(--sp-xs);
    margin-bottom: var(--sp-sm);
}

.product-card ul li {
    line-height: var(--lh-loose);
}

.product-card .cta-button {
    max-width: 489px;
}

.product-card .subsection-heading {
    font-size: var(--font-xl);
}

.product-card .product-card-heading {
    font-size: var(--font-md);
    font-weight: var(--fw-bold);
    color: #000;
    line-height: var(--lh-snug);
    margin-bottom: var(--sp-xs);
    margin-top: var(--sp-xs);
}

.product-card p {
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    color: #000;
    line-height: var(--lh-loose);
    margin-bottom: 0;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6ab05;
    border: 1px solid #000;
    border-radius: var(--radius-full);
    min-height: 57px;
    max-width: 620px;
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    padding: var(--sp-xs) var(--sp-md);
}

.cta-banner:hover {
    text-decoration: none;
    background: #d49e04;
}

.cta-banner span {
    font-size: var(--font-md);
    font-weight: var(--fw-bold);
    color: #000;
    text-transform: uppercase;
    text-align: center;
    line-height: var(--lh-snug);
}

.cta-banner--sm {
    max-width: 489px;
}

.cta-banner--md {
    max-width: 544px;
}

.checklist-text {
    line-height: var(--lh-relaxed);
}

.bold-list li {
    font-weight: var(--fw-bold);
}

.spaced-list {
    gap: var(--sp-md);
}

.subsection-heading {
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-xs);
}

.author-bar {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    background: #20274e;
    border-left: 4px solid #5cb7b3;
    padding: 0 var(--sp-sm);
    min-height: 49px;
    margin-bottom: var(--sp-md);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-name {
    font-size: var(--font-base);
    font-weight: var(--fw-bold);
    color: #fff;
}

.author-date {
    font-size: var(--font-sm);
    font-weight: var(--fw-normal);
    color: #fff;
}

.hero-image,
.content-image,
.product-showcase-image {
    width: 100%;
    border-radius: var(--radius-xl);
}

.content-image {
    margin-top: var(--sp-xs);
    margin-bottom: var(--sp-xs);
}

.listicle-list {
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
}

.section-title {
    font-size: var(--font-2xl);
    line-height: var(--lh-snug);
    color: var(--color-text);
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-xs);
    font-weight: var(--fw-strong);
}

.product-showcase {
    margin-top: var(--sp-md);
}

.product-showcase-title {
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    color: var(--color-text);
    margin-bottom: var(--sp-sm);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
    list-style: none;
    padding-left: 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-sm);
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

.trust-badge {
    background: #5c4e85;
    border-radius: var(--radius-xl);
    padding: var(--sp-md) var(--sp-sm);
    text-align: center;
    box-shadow: 0px 6px 16px 0px rgba(60, 55, 55, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
}

.trust-badge span {
    font-size: var(--font-lg);
    font-weight: var(--fw-normal);
    color: #fff;
    line-height: var(--lh-tight);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6ab05;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: var(--font-base);
    font-weight: var(--fw-bold);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    min-height: 57px;
    height: auto;
    padding: var(--sp-xs) var(--sp-md);
    border-radius: var(--radius-full);
    border: 1px solid #000;
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #d49c04;
    text-decoration: none;
}

.order-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    text-decoration: none;
    box-shadow: 0px 6px 16px 0px rgba(60, 55, 55, 0.16);
    margin-bottom: var(--sp-md);
    margin-top: var(--sp-md);
    text-align: center;
}

.order-button:hover {
    text-decoration: none;
    background: #333;
}

.order-button-title {
    font-size: var(--font-2xl);
    color: #fff;
    line-height: var(--lh-tight);
    text-transform: uppercase;
}

.order-button-subtitle {
    font-size: var(--font-md);
    font-weight: var(--fw-normal);
    color: #fff;
    line-height: var(--lh-tight);
}

.reviews-section {
    margin-top: var(--sp-lg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-md);
    margin-bottom: var(--sp-lg);
}

.review-card {
    background: #f5f5f6;
    border-radius: var(--radius-lg);
    padding: var(--sp-sm);
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: var(--sp-md);
}

.review-name {
    font-size: var(--font-lg);
    font-weight: var(--fw-bold);
    color: #000;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars img {
    width: 18px;
    height: 18px;
}

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

.review-content .bold {
    display: block;
    font-size: var(--font-md);
    font-weight: var(--fw-bold);
    color: #000;
    line-height: var(--lh-snug);
}

.review-content p {
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
    color: #000;
    margin: 0;
}


.sources {
    margin-top: var(--sp-md);
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
}

.sources summary {
    font-size: var(--font-md);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    padding: var(--sp-sm) var(--sp-md);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sources summary::-webkit-details-marker {
    display: none;
}

.sources summary::after {
    content: "+";
    font-size: var(--font-xl);
    font-weight: var(--fw-strong);
    flex-shrink: 0;
    margin-left: var(--sp-sm);
}

.sources[open] summary::after {
    content: "\2212";
}

.sources-list {
    padding: 0 var(--sp-md) var(--sp-md);
    padding-left: calc(var(--sp-md) + var(--sp-md));
}

.sources-list li {
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    color: #000;
    margin-bottom: var(--sp-xs);
}

.sources-list a {
    display: block;
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    color: rgb(65, 105, 225);
    margin-bottom: var(--sp-xs);
    word-break: break-all;
}

.disclaimer-text p {
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
    color: #000;
    margin-bottom: var(--sp-sm);
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .cta-button {
        font-size: var(--font-md);
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-card-cta {
    max-width: 489px;
}

.rounded-img {
    border-radius: var(--radius-xl);
}

.accordion-section {
    margin-top: var(--sp-md);
}

.accordion-item {
    border-top: 1px solid #000;
}

.accordion-item:last-child {
    border-bottom: 1px solid #000;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-xs) var(--sp-sm);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    color: #000;
    text-align: left;
}

.accordion-icon {
    font-size: var(--font-xl);
    line-height: var(--lh-none);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-body {
    display: none;
    padding: 0 var(--sp-sm) var(--sp-sm);
}

.accordion-body.open {
    display: block;
}

.accordion-body a {
    color: rgb(65, 105, 225);
    word-break: break-all;
    display: block;
    margin-bottom: var(--sp-xs);
}

.accordion-body p {
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
}

.page-footer {
    background: #232222;
    color: #fff;
    padding: var(--sp-lg) var(--sp-md);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
    text-decoration: none;
}

.footer-logo:hover {
    text-decoration: none;
}

.footer-logo .logo-icon,
.footer-logo .logo-apotheken,
.footer-logo .logo-gesundheitstipps,
.footer-logo .logo-tagline {
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
}

.footer-nav a {
    color: #aaa;
    font-size: var(--font-sm);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.footer-nav a:hover {
    color: #fff;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: var(--sp-sm);
}

.social-icons img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(0.7);
    transition: filter 0.2s ease;
}

.social-icons a:hover img {
    filter: brightness(0) invert(1);
}

.footer-bottom {
    margin-top: var(--sp-lg);
}

.footer-bottom p,
.footer-bottom p span {
    color: #fff;
    font-size: var(--font-sm);
    font-weight: var(--fw-bold);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

