/* assets/css/style.css */

/* #1 Farben */
:root {
    --toh-green: #1b2a0e;
    --toh-green-dark: #0b3f35;

    --toh-orange: #ff6846;
    --toh-orange-dark: #e95737;
    --toh-orange-soft: #ff896f;

    --toh-pink: #f58faf;
    --toh-pink-soft: #f4c9d6;

    --toh-cream: #fff8ea;
    --toh-cream-2: #fbf0df;
    --toh-cream-soft: #fbf0df;

    --toh-blue: #2585cf;
    --toh-wine: #5c2e32;

    --toh-light-green: #e3ead6;
    --toh-green-soft: #5d756f;

    --toh-text: #173f36;
    --toh-muted: #5d756f;
    --toh-border: rgba(92, 46, 50, 0.24);
    --toh-shadow: 0 22px 60px rgba(49, 35, 30, 0.14);
    --toh-radius: 14px;
}

/* #2 Basis */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: var(--toh-text);
    background:
        radial-gradient(circle at top left, rgba(245, 143, 175, 0.22), transparent 34%),
        linear-gradient(180deg, var(--toh-cream), var(--toh-cream-soft));
}

body.toh-modal-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--toh-green);
    line-height: 1.08;
}

p {
    line-height: 1.7;
}

/* #3 Header */
.toh-header {
    position: sticky;
    top: 0;
    z-index: 60;
  
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 248, 234, 0.20);
}

.toh-header-inner {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.toh-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--toh-cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 0.9;
    flex-shrink: 0;
}

.toh-logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.toh-logo small {
    font-size: 13px;
    letter-spacing: 4px;
}

.toh-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 600;
    font-size: 15px;
}

.toh-nav a {
    position: relative;
    color: rgba(255, 248, 234, 0.92);
}

.toh-nav a:hover,
.toh-nav a.active {
    color: var(--toh-orange-soft);
}

.toh-nav-btn {
    background: var(--toh-orange);
    color: #fff !important;
    padding: 13px 22px;
    border: 1px solid var(--toh-orange-dark);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(217, 146, 114, 0.24);
}

.toh-nav-btn:hover {
    background: var(--toh-orange-dark);
    border-color: #c77f62;
}

.toh-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    padding: 7px;
    cursor: pointer;
}

.toh-menu-btn span {
    display: block;
    height: 2px;
    background: var(--toh-green);
    margin: 7px 0;
    border-radius: 10px;
}

/* #4 Buttons */
.toh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s ease;
}

.toh-btn-orange {
    background: var(--toh-orange);
    color: #fff;
    border-color: var(--toh-orange-dark);
    box-shadow: 0 14px 28px rgba(255, 104, 70, 0.24);
}

.toh-btn-orange:hover {
    background: var(--toh-orange-dark);
    border-color: var(--toh-orange-dark);
    transform: translateY(-1px);
}

.toh-btn-outline {
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(22, 63, 57, 0.42);
    color: var(--toh-green);
}

.toh-btn-outline:hover {
    background: #fff;
}

.toh-btn:focus,
.toh-btn:active {
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 169, 139, 0.24);
}

/* #5 Hero */
.toh-hero {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 650px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 38px;
    padding: 64px 0 54px;
}

.toh-hero-content {
    padding-left: 34px;
}

.toh-eyebrow {
    margin: 0 0 14px;
    color: var(--toh-orange);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
}

.toh-hero h1 {
    font-size: 60px;
    margin: 0 0 22px;
    max-width: 760px;
}

.toh-hero p:not(.toh-eyebrow) {
    max-width: 620px;
    font-size: 18px;
    margin-bottom: 30px;
}

.toh-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.toh-hero-image {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--toh-shadow);
    min-height: 500px;
}

.toh-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    filter: brightness(1.08) contrast(1.03);
}

/* #6 Feature Strip */
.toh-feature-strip {
    width: min(1300px, calc(100% - 48px));
    margin: 25px auto 0;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 250, 246, 0.94), rgba(227, 234, 214, 0.82));
    border: 1px solid rgba(22, 63, 57, 0.12);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(31, 44, 41, 0.12);
    backdrop-filter: blur(14px);
}

.toh-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 250, 246, 0.66);
    border: 1px solid rgba(22, 63, 57, 0.08);
    transition: 0.22s ease;
}

.toh-feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 250, 246, 0.92);
    box-shadow: 0 12px 26px rgba(31, 44, 41, 0.08);
}

.toh-feature span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--toh-green);
    font-size: 25px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(212, 207, 83, 0.32), rgba(231, 169, 139, 0.24));
}

.toh-feature strong {
    display: block;
    color: var(--toh-green);
    font-size: 15px;
    line-height: 1.25;
}

.toh-feature small {
    display: block;
    margin-top: 5px;
    color: var(--toh-green-soft);
    font-size: 14px;
    line-height: 1.35;
}

/* #7 Allgemeine Sections */
.toh-section,
.toh-video-section,
.toh-about,
.toh-contact-strip,
.toh-page {
    width: min(1320px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

.toh-section {
    padding: 70px 0 45px;
}

.toh-section-title {
    text-align: center;
    margin-bottom: 42px;
}

.toh-section-title p {
    margin: 0 0 8px;
    color: var(--toh-orange);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 800;
}

.toh-section-title h2 {
    margin: 0;
    font-size: 48px;
}

.toh-page {
    padding-top: 70px;
}

.toh-page-hero {
    background: rgba(255, 250, 246, 0.78);
    border: 1px solid var(--toh-border);
    border-radius: 24px;
    padding: 54px;
    box-shadow: var(--toh-shadow);
    margin-bottom: 40px;
}

.toh-page-hero h1 {
    font-size: 54px;
    margin: 0 0 18px;
}

.toh-page-hero p:not(.toh-eyebrow) {
    max-width: 860px;
    font-size: 18px;
}

/* #8 Schwerpunkte */
.toh-focus-section {
    width: min(1320px, calc(100% - 48px));
    margin: 70px auto 20px;
    padding: 52px;
    border-radius: 28px;
    background: rgba(255, 250, 246, 0.84);
    border: 1px solid var(--toh-border);
    box-shadow: var(--toh-shadow);
}

.toh-focus-intro {
    width: min(920px, 100%);
    margin: -18px auto 34px;
    text-align: center;
}

.toh-focus-intro p {
    margin: 0;
    color: var(--toh-green-soft);
}

.toh-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.toh-focus-card {
    position: relative;
    min-height: 150px;
    padding: 24px 24px 22px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(212, 207, 83, 0.24), transparent 42%),
        linear-gradient(145deg, rgba(255, 250, 246, 0.92), rgba(227, 234, 214, 0.46));
    border: 1px solid rgba(22, 63, 57, 0.12);
    box-shadow: 0 14px 30px rgba(31, 44, 41, 0.08);
    color: var(--toh-green);
    transition: 0.22s ease;
}

.toh-focus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(31, 44, 41, 0.12);
    background:
        radial-gradient(circle at top left, rgba(231, 169, 139, 0.28), transparent 42%),
        linear-gradient(145deg, rgba(255, 250, 246, 0.96), rgba(227, 234, 214, 0.56));
}

 

.toh-focus-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--toh-green);
    font-weight: 900;
    font-size:18px;
}

.toh-focus-card small {
    display: block;
    color: var(--toh-green-soft);
    line-height: 1.55;
}
/* #9 Angebotskarten */
.toh-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.toh-card {
    background: rgba(255, 250, 246, 0.88);
    border: 1px solid var(--toh-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(31, 44, 41, 0.08);
    transition: 0.22s ease;
}

.toh-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(31, 44, 41, 0.12);
}

.toh-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.toh-card div {
    padding: 24px 24px 26px;
    text-align: center;
}

.toh-card h3 {
    font-size: 24px;
    margin: 0 0 12px;
}

.toh-card p {
    margin: 0 0 18px;
    font-size: 15px;
}

.toh-card a {
    color: var(--toh-orange);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* #10 Highlight */
.toh-highlight {
    width: min(1240px, calc(100% - 48px));
    margin: 30px auto 0;
    min-height: 430px;
    display: grid;
    grid-template-columns: 0.9fr 0.9fr 0.9fr;
    background: rgba(255, 250, 246, 0.88);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--toh-border);
    box-shadow: var(--toh-shadow);
}

.toh-highlight-box {
    padding: 44px;
}



.toh-highlight-box h2 {
    font-size: 34px;
    margin: 12px 0 12px;
}

.toh-highlight-box a:not(.toh-btn) {
    color: var(--toh-orange);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.toh-highlight-gold {
    background: linear-gradient(180deg, var(--toh-gold), var(--toh-gold-soft), var(--toh-orange));
}

.toh-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* #11 Video */
.toh-video-section {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 36px;
    background: rgba(255, 250, 246, 0.80);
    border: 1px solid var(--toh-border);
    border-radius: 22px;
    padding: 36px;
    box-shadow: var(--toh-shadow);
}

.toh-video-text h2 {
    font-size: 46px;
    margin: 0 0 18px;
}

.toh-video-box {
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

.toh-video-box video {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* #12 About */
.toh-about {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 0.9fr 0.9fr 0.9fr;
    background: rgba(255, 250, 246, 0.88);
    border: 1px solid var(--toh-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--toh-shadow);
}

.toh-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.toh-about-text {
    padding: 42px;
}

.toh-about-text h2 {
    font-size: 34px;
    margin: 0 0 16px;
}

.toh-quote-image {
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

.toh-quote-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* #13 Kontakt Schnellbereich */
/* #12 Kontakt Schnellbereich */
.toh-contact-strip {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(255, 250, 246, 0.92), rgba(227, 234, 214, 0.52));
    border: 1px solid var(--toh-border);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(31, 44, 41, 0.10);
}

.toh-contact-mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 250, 246, 0.72);
    border: 1px solid rgba(22, 63, 57, 0.10);
    transition: 0.22s ease;
}

.toh-contact-mini-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 250, 246, 0.95);
    box-shadow: 0 12px 28px rgba(31, 44, 41, 0.10);
}

.toh-contact-mini-card > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--toh-green);
    background: linear-gradient(180deg, rgba(212, 207, 83, 0.40), rgba(231, 169, 139, 0.28));
    font-weight: 900;
}

.toh-contact-mini-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--toh-green);
}

.toh-contact-mini-card a {
    color: var(--toh-green-soft);
}

.toh-contact-mini-card a:hover {
    color: var(--toh-orange-dark);
}

/* #14 Footer */
.toh-footer {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--toh-light-green), #edf5ef);
    color: var(--toh-green);
    border-top: 1px solid rgba(22, 63, 57, 0.14);
}

.toh-footer-inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.9fr 0.8fr;
    gap: 38px;
}

.toh-logo-footer {
    font-size: 22px;
}

.toh-logo-footer img {
    width: 48px;
    height: 48px;
}

.toh-footer-brand p {
    max-width: 320px;
    margin: 16px 0 0;
}

.toh-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toh-footer-links a:hover,
.toh-socials a:hover {
    color: var(--toh-orange);
}

.toh-socials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-content: start;
}

/* #15 Formulare */
.toh-form {
    background: rgba(255, 250, 246, 0.92);
    border: 1px solid var(--toh-border);
    border-radius: 18px;
    padding: 34px;
    box-shadow: var(--toh-shadow);
}

.toh-form h2 {
    font-size: 34px;
    margin: 0 0 24px;
}

.toh-form label {
    display: block;
    color: var(--toh-green);
    font-weight: 800;
    margin-bottom: 18px;
}

.toh-form input,
.toh-form textarea,
.toh-form select {
    width: 100%;
    margin-top: 7px;
    border: 1px solid rgba(22, 63, 57, 0.20);
    background: #fff;
    border-radius: 10px;
    padding: 14px 15px;
    outline: none;
    color: var(--toh-text);
}

.toh-form input:focus,
.toh-form textarea:focus,
.toh-form select:focus {
    border-color: var(--toh-orange);
    box-shadow: 0 0 0 4px rgba(231, 169, 139, 0.18);
}

.toh-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
}

.toh-hp {
    position: absolute;
    left: -9999px;
}

.toh-hidden {
    display: none !important;
}

.toh-payment-info {
    background: linear-gradient(135deg, rgba(212, 207, 83, 0.22), rgba(231, 169, 139, 0.18));
    border: 1px solid var(--toh-border);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 22px;
}

/* #16 Kontaktseite + Google Map */
.toh-contact-layout {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 34px;
}

.toh-contact-box {
    background: rgba(255, 250, 246, 0.92);
    border: 1px solid var(--toh-border);
    border-radius: 18px;
    padding: 34px;
    box-shadow: var(--toh-shadow);
    align-self: start;
}

.toh-contact-box h2 {
    margin-top: 0;
    font-size: 34px;
}

.toh-contact-box div {
    padding: 18px 0;
    border-bottom: 1px solid var(--toh-border);
}

.toh-contact-box strong {
    display: block;
    color: var(--toh-green);
    margin-bottom: 8px;
}

.toh-contact-box a {
    color: var(--toh-orange);
    font-weight: 800;
}

.toh-map-contact {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 4px;
}

.toh-map-contact strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--toh-green);
}

.toh-map-contact strong::before {
     
    color: var(--toh-orange);
    font-size: 17px;
}

.toh-map-text {
    margin: 10px 0 18px;
    color: var(--toh-green-soft);
    font-size: 15px;
    line-height: 1.7;
    background: linear-gradient(180deg, rgba(212, 207, 83, 0.14), rgba(231, 169, 139, 0.12));
    border-left: 4px solid var(--toh-gold);
    border-radius: 12px;
    padding: 13px 15px;
}

.toh-map-box {
    width: 100%;
    height: 270px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(212, 207, 83, 0.35);
    box-shadow: 0 16px 34px rgba(31, 44, 41, 0.12);
    background: linear-gradient(180deg, rgba(212, 207, 83, 0.18), rgba(231, 169, 139, 0.14)), var(--toh-light-green);
    padding: 7px;
}

.toh-map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: 13px;
}

/* #17 Cookie Card */
.toh-cookie-card {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 90;
    width: min(430px, calc(100% - 56px));
    display: none;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 250, 246, 0.96);
    border: 1px solid rgba(22, 63, 57, 0.14);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 22px 55px rgba(31, 44, 41, 0.18);
    backdrop-filter: blur(16px);
}

.toh-cookie-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--toh-green);
    background: linear-gradient(180deg, var(--toh-gold), var(--toh-orange));
    box-shadow: 0 10px 22px rgba(31, 44, 41, 0.12);
    font-size: 18px;
}

.toh-cookie-content strong {
    display: block;
    color: var(--toh-green);
    font-size: 16px;
    margin-bottom: 6px;
}

.toh-cookie-content p {
    margin: 0;
    color: var(--toh-green-soft);
    font-size: 14px;
    line-height: 1.55;
}

.toh-cookie-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
}

.toh-cookie-actions button {
    border: 0;
    background: var(--toh-orange);
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
    padding: 11px 18px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(31, 44, 41, 0.12);
}

.toh-cookie-actions button:hover {
    background: var(--toh-orange-dark);
}

.toh-cookie-actions a {
    color: var(--toh-green);
    font-size: 14px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* #18 SweetAlert */
.swal2-popup {
    border-radius: 18px !important;
    font-family: "Inter", "Segoe UI", Arial, sans-serif !important;
}

.swal2-title {
    color: var(--toh-green) !important;
}

.swal2-confirm {
    background: var(--toh-orange) !important;
    border-radius: 8px !important;
}

/* #19 Produktseite */
.toh-products-shop-layout {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 960px) 320px;
    gap: 34px;
    align-items: start;
}

.toh-products-left,
.toh-cart-box {
    min-width: 0;
}

.toh-products-shop-layout .toh-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.toh-products-shop-layout .toh-product-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 250, 246, 0.92);
    border: 1px solid var(--toh-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(31, 44, 41, 0.12);
    transition: 0.22s ease;
}

.toh-products-shop-layout .toh-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(31, 44, 41, 0.13);
}

.toh-products-shop-layout .toh-product-image {
    width: 100%;
    height: 205px;
    background: linear-gradient(180deg, rgba(212, 207, 83, 0.18), rgba(231, 169, 139, 0.16)), var(--toh-cream);
}

.toh-products-shop-layout .toh-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.toh-products-shop-layout .toh-product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 20px;
    text-align: center;
}

.toh-products-shop-layout .toh-product-card h2 {
    min-height: 58px;
    font-size: 24px;
    line-height: 1.05;
    margin: 0 0 10px;
}

.toh-products-shop-layout .toh-product-card p {
    min-height: 54px;
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
}

.toh-products-shop-layout .toh-product-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--toh-green);
    font-size: 14px;
}

.toh-products-shop-layout .toh-product-card .toh-btn {
    width: 100%;
    min-height: 42px;
    margin-top: auto;
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 8px;
}

/* #20 Warenkorb */
.toh-cart-sticky {
    background: rgba(255, 250, 246, 0.96);
    border: 1px solid var(--toh-border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 20px 44px rgba(31, 44, 41, 0.15);
}

@media (min-width: 1181px) {
    .toh-cart-sticky {
        position: fixed;
        top: 155px;
        right: max(28px, calc((100vw - 1320px) / 2 + 28px));
        width: 320px;
        max-height: calc(100vh - 175px);
        overflow-y: auto;
        z-index: 30;
    }
}

.toh-cart-sticky h2 {
    margin: 0 0 18px;
    font-size: 34px;
}

.toh-cart-empty {
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--toh-green-soft);
    background: linear-gradient(180deg, rgba(212, 207, 83, 0.12), rgba(231, 169, 139, 0.10));
    border: 1px solid rgba(22, 63, 57, 0.12);
}

.toh-cart-list {
    display: grid;
    gap: 12px;
}

.toh-cart-item {
    padding: 13px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(22, 63, 57, 0.10);
}

.toh-cart-item-info strong {
    display: block;
    color: var(--toh-green);
    font-size: 15px;
    line-height: 1.35;
}

.toh-cart-item-info small {
    display: block;
    color: var(--toh-green-soft);
    margin-top: 4px;
}

.toh-cart-controls {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.toh-cart-controls button {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 900;
    color: var(--toh-green);
    background: linear-gradient(180deg, rgba(212, 207, 83, 0.55), rgba(231, 169, 139, 0.42));
}

.toh-cart-controls span {
    min-width: 26px;
    text-align: center;
    font-weight: 900;
    color: var(--toh-green);
}

.toh-cart-controls .cart-remove {
    margin-left: auto;
    color: #fff;
    background: var(--toh-orange);
}

.toh-cart-total {
    margin: 18px 0;
    padding-top: 16px;
    border-top: 1px solid var(--toh-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toh-cart-total span,
.toh-cart-total strong {
    font-size: 16px;
    color: var(--toh-green);
}

#openOrderPopup {
    width: 100%;
}

/* #21 Bestell-Popup */
.toh-order-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.toh-order-modal.is-open {
    display: flex;
}

.toh-order-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(22, 63, 57, 0.38);
    backdrop-filter: blur(8px);
}

.toh-order-modal-box {
    position: relative;
    z-index: 2;
    width: min(940px, 100%);
    max-height: calc(100vh - 44px);
    overflow-y: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(31, 44, 41, 0.28);
}

.toh-order-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: var(--toh-orange);
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.toh-order-modal-box .toh-product-order-form {
    width: 100%;
    margin: 0;
    border-radius: 24px;
}

.toh-order-form-intro {
    margin: -12px 0 22px;
    color: var(--toh-green-soft);
    font-size: 15px;
    line-height: 1.6;
}

.toh-shipping-fields {
    display: grid;
    grid-template-columns: 2fr 0.8fr 1.2fr;
    gap: 0 18px;
}

.toh-product-order-form textarea[readonly] {
    background: linear-gradient(180deg, rgba(212, 207, 83, 0.07), rgba(231, 169, 139, 0.06)), #fff;
    color: var(--toh-green);
    font-weight: 700;
}

.toh-order-total-preview {
    margin: -4px 0 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(212, 207, 83, 0.14), rgba(231, 169, 139, 0.12));
    border: 1px solid rgba(22, 63, 57, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--toh-green);
}

.toh-order-total-preview span {
    font-weight: 800;
}

.toh-order-total-preview strong {
    font-size: 18px;
}

.toh-captcha-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: end;
    margin-bottom: 20px;
}

.toh-captcha-row label {
    margin-bottom: 0;
}

.toh-captcha-image {
    height: 58px;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 250, 246, 0.85);
    border: 1px solid var(--toh-border);
    border-radius: 14px;
    padding: 8px 10px;
}

.toh-captcha-image img {
    height: 40px;
    max-width: 180px;
    object-fit: contain;
}

.toh-captcha-image button {
    width: 80px;
    height: 40px;
     margin-left: 20px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    color: var(--toh-green);
    background: linear-gradient(180deg, var(--toh-gold), var(--toh-orange));
    font-size: 20px;
    font-weight: 800;
}

.toh-captcha-row input {
    height: 52px;
}

/* #22 Responsive */
@media (min-width: 1500px) {
    .toh-header-inner,
    .toh-hero {
        width: min(1440px, calc(100% - 70px));
    }

    .toh-section,
    .toh-highlight,
    .toh-video-section,
    .toh-about,
    .toh-contact-strip,
    .toh-footer-inner,
    .toh-page {
        width: min(1300px, calc(100% - 70px));
    }
}

@media (max-width: 1280px) {
    .toh-header-inner {
        width: min(1180px, calc(100% - 36px));
        gap: 18px;
    }

    .toh-nav {
        gap: 18px;
        font-size: 14px;
    }

    .toh-logo {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .toh-logo img {
        width: 50px;
        height: 50px;
    }

    .toh-hero {
        min-height: 610px;
        grid-template-columns: 1fr 1fr;
        width: calc(100% - 36px);
    }

    .toh-hero-content {
        padding-left: 8px;
    }

    .toh-hero h1 {
        font-size: 52px;
    }

    .toh-section-title h2 {
        font-size: 42px;
    }

    .toh-video-text h2,
    .toh-page-hero h1 {
        font-size: 40px;
    }

    .toh-card-grid {
        gap: 20px;
    }

    .toh-card div {
        padding: 22px 18px;
    }
}

@media (max-width: 1180px) {
    .toh-products-shop-layout {
        grid-template-columns: 1fr;
        width: min(980px, calc(100% - 48px));
    }

    .toh-cart-sticky {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 1024px) {
    .toh-menu-btn {
        display: block;
    }

    .toh-nav {
        position: absolute;
        top: 86px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 250, 246, 0.97);
        border: 1px solid var(--toh-border);
        border-radius: 18px;
        padding: 18px;
        box-shadow: var(--toh-shadow);
    }

    .toh-nav.is-open {
        display: flex;
    }

    .toh-nav a {
        padding: 12px;
    }

    .toh-nav-btn {
        text-align: center;
    }

    .toh-hero {
        grid-template-columns: 1fr;
        padding-top: 42px;
    }

    .toh-hero-image,
    .toh-hero-image img {
        min-height: 420px;
    }

    .toh-feature-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 24px;
    }

    .toh-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .toh-highlight,
    .toh-video-section,
    .toh-about,
    .toh-contact-layout {
        grid-template-columns: 1fr;
    }

    .toh-highlight-image img,
    .toh-about-image img {
        max-height: 420px;
    }

    .toh-contact-strip {
        grid-template-columns: 1fr 1fr;
    }

    .toh-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .toh-products-shop-layout .toh-products-grid,
    .toh-focus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .toh-shipping-fields {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 700px) {
    body {
        background: linear-gradient(145deg, rgba(232, 188, 201, 0.72), rgba(219, 229, 220, 0.78)), var(--toh-cream);
    }

    .toh-header-inner {
        width: calc(100% - 28px);
        min-height: 76px;
    }

    .toh-logo {
        font-size: 18px;
        letter-spacing: 2.4px;
    }

    .toh-logo img {
        width: 44px;
        height: 44px;
    }

    .toh-logo small {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .toh-nav {
        top: 76px;
        left: 14px;
        right: 14px;
    }

    .toh-hero,
    .toh-section,
    .toh-highlight,
    .toh-video-section,
    .toh-about,
    .toh-contact-strip,
    .toh-footer-inner,
    .toh-page,
    .toh-products-shop-layout,
    .toh-focus-section {
        width: calc(100% - 28px);
    }

    .toh-hero {
        min-height: auto;
        padding: 34px 0 28px;
        gap: 26px;
    }

    .toh-hero-content {
        padding-left: 0;
    }

    .toh-hero h1,
    .toh-page-hero h1 {
        font-size: 34px;
    }

    .toh-hero p:not(.toh-eyebrow) {
        font-size: 17px;
    }

    .toh-hero-actions {
        flex-direction: column;
    }

    .toh-btn {
        width: 100%;
    }

    .toh-hero-image {
        border-radius: 24px;
    }

    .toh-hero-image,
    .toh-hero-image img {
        min-height: 360px;
    }

    .toh-feature-strip {
        grid-template-columns: 1fr;
        margin-top: 18px;
        padding: 12px;
        border-radius: 20px;
    }

    .toh-feature {
        min-height: 76px;
        padding: 15px;
    }

    .toh-feature span {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 22px;
    }

    .toh-section {
        padding: 48px 0 30px;
    }

    .toh-section-title h2,
    .toh-video-text h2 {
        font-size: 31px;
    }

    .toh-highlight-box h2,
    .toh-about-text h2,
    .toh-form h2,
    .toh-contact-box h2,
    .toh-cart-sticky h2 {
        font-size: 28px;
    }

    .toh-card h3 {
        font-size: 23px;
    }

    .toh-card-grid,
    .toh-products-shop-layout .toh-products-grid,
    .toh-focus-grid {
        grid-template-columns: 1fr;
    }

    .toh-card img {
        height: 220px;
    }

    .toh-highlight-box {
        padding: 28px;
    }

    .toh-video-section {
        padding: 22px;
        margin-top: 42px;
    }

    .toh-video-box video {
        height: 320px;
    }

    .toh-about {
        margin-top: 42px;
    }

    .toh-about-text,
    .toh-quote {
        padding: 28px;
    }

    .toh-contact-strip,
    .toh-footer-inner {
        grid-template-columns: 1fr;
    }

    .toh-footer {
        margin-top: 46px;
    }

    .toh-footer-inner {
        gap: 26px;
        padding: 36px 0;
    }

    .toh-page {
        padding-top: 36px;
    }

    .toh-page-hero {
        padding: 30px 24px;
    }

    .toh-products-shop-layout {
        gap: 24px;
    }

    .toh-products-shop-layout .toh-product-card {
        min-height: auto;
    }

    .toh-products-shop-layout .toh-product-image {
        height: 240px;
    }

    .toh-form,
    .toh-contact-box,
    .toh-cart-sticky {
        padding: 24px;
    }

    .toh-form-grid,
    .toh-captcha-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .toh-captcha-image {
        margin-bottom: 12px;
    }

    .toh-map-box {
        height: 235px;
        padding: 6px;
    }

    .toh-cookie-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
        border-radius: 18px;
        padding: 16px;
    }

    .toh-cookie-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .toh-cookie-actions button {
        width: 100%;
    }

    .toh-cookie-actions a {
        text-align: center;
    }

    .toh-order-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .toh-order-modal-box {
        max-height: calc(100vh - 24px);
        border-radius: 22px 22px 0 0;
    }

    .toh-order-modal-box .toh-product-order-form {
        border-radius: 22px 22px 0 0;
    }

    .toh-order-total-preview {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .toh-focus-section {
        margin-top: 44px;
        padding: 30px 22px;
        border-radius: 22px;
    }
}

@media (max-width: 390px) {
    .toh-hero h1,
    .toh-page-hero h1 {
        font-size: 32px;
    }

    .toh-section-title h2,
    .toh-video-text h2 {
        font-size: 30px;
    }

    .toh-highlight-box h2,
    .toh-about-text h2,
    .toh-form h2,
    .toh-contact-box h2,
    .toh-cart-sticky h2 {
        font-size: 26px;
    }
}

/* #45 Titel vor Highlight-Bereich */
.toh-highlight-title {
    padding: 46px 0 20px;
}

.toh-highlight-title .toh-section-title {
    margin-bottom: 0;
}

/* #46 Highlight ohne Icons */
.toh-highlight-kicker {
    margin: 0 0 14px;
    color: var(--toh-orange);
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.toh-highlight-box p {
    max-width: 440px;
}

.toh-highlight-box .toh-btn {
    margin-top: 12px;
}

/* #47 Highlight-CTAs auf gleicher Höhe */
.toh-highlight-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.toh-highlight-box .toh-highlight-action {
    margin-top: auto;
    align-self: flex-start;
}

.toh-highlight-link {
    display: inline-block;
    font-weight: 800;
    color: var(--toh-orange);
    text-decoration: none;
}

/* #48 Angebotskarten: Link unten auf gleicher Höhe */
.toh-card {
    display: flex;
    flex-direction: column;
}

.toh-card > div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.toh-card h3 {
    min-height: 58px;
}

.toh-card p {
    min-height: 96px;
}

.toh-card a {
    margin-top: auto;
}

/* #49 Einzelner Button unter Angebotskarten */
.toh-section-action {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

/* #50 Anchor-Scroll Abstand wegen Sticky Header */
#gesundheit,
#angebote,
#yoga,
#beratung,
#bluttest,
#natur,
#alltag,
#ueber-mich {
    scroll-margin-top: 115px;
}

@media (max-width: 700px) {
    #gesundheit,
    #angebote,
    #yoga,
    #beratung,
    #bluttest,
    #natur,
    #alltag,
    #ueber-mich {
        scroll-margin-top: 95px;
    }
}

/* #51 WhatsApp Icon */
.toh-whatsapp-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: var(--toh-green);
}

.toh-contact-mini-card:hover .toh-whatsapp-icon svg {
    fill: var(--toh-orange-dark);
}

/* #52 FAQ Bereich */
.toh-faq-section {
    width: min(1320px, calc(100% - 48px));
    margin: 70px auto 0;
    padding: 54px;
    border-radius: 28px;
    background: rgba(255, 250, 246, 0.84);
    border: 1px solid var(--toh-border);
    box-shadow: var(--toh-shadow);
}

.toh-faq-intro {
    width: min(760px, 100%);
    margin: -18px auto 38px;
    text-align: center;
    color: var(--toh-green-soft);
}

.toh-faq-intro p {
    margin: 0;
}

.toh-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.toh-faq-card {
    min-height: 170px;
    padding: 28px 30px;
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 250, 246, 0.92), rgba(227, 234, 214, 0.28));
    border: 1px solid rgba(22, 63, 57, 0.10);
    box-shadow: 0 14px 30px rgba(31, 44, 41, 0.07);
}

.toh-faq-card h3 {
    margin: 0 0 14px;
    color: var(--toh-green);
}

.toh-faq-card p {
    margin: 0;
    color: var(--toh-text);
}

@media (max-width: 900px) {
    .toh-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .toh-faq-section {
        width: calc(100% - 28px);
        margin-top: 44px;
        padding: 30px 22px;
        border-radius: 22px;
    }

    .toh-faq-card {
        min-height: auto;
        padding: 22px;
    }
}



/* #53 Produktseite mobil: Warenkorb sichtbar vor Produkte */
@media (max-width: 700px) {
    .toh-products-shop-layout {
        display: flex;
        flex-direction: column;
        width: calc(100% - 28px);
        gap: 22px;
    }

    .toh-products-left {
        order: 2;
    }

    .toh-cart-box {
        order: 1;
        width: 100%;
        position: sticky;
        top: 84px;
        z-index: 35;
    }

    .toh-cart-sticky {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        width: 100% !important;
        max-height: 42vh;
        overflow-y: auto;
        padding: 18px;
        border-radius: 20px;
    }

    .toh-cart-sticky .toh-eyebrow {
        margin-bottom: 6px;
    }

    .toh-cart-sticky h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .toh-cart-empty {
        padding: 12px;
        font-size: 14px;
    }

    .toh-cart-item {
        padding: 11px;
    }

    .toh-cart-total {
        margin: 14px 0;
        padding-top: 12px;
    }

    #openOrderPopup {
        min-height: 44px;
        font-size: 12px;
    }
}


/* #54 Produktkarten mobil sauber klickbar */
@media (max-width: 700px) {
    .toh-products-shop-layout .toh-products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .toh-products-shop-layout .toh-product-card {
        min-height: auto;
    }

    .toh-products-shop-layout .toh-product-image {
        height: 230px;
    }

    .toh-products-shop-layout .toh-product-card .toh-btn {
        position: relative;
        z-index: 2;
        width: 100%;
        pointer-events: auto;
    }
}


/* #55 Header Actions: Menü + Warenkorb Icon */
.toh-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toh-cart-header-btn {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(22, 63, 57, 0.18);
    border-radius: 50%;
    background: rgba(255, 250, 246, 0.82);
    color: var(--toh-green);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.toh-cart-header-btn svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.toh-cart-header-btn span {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--toh-orange);
    color: #fff;
    border: 1px solid var(--toh-orange-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 18px;
    text-align: center;
    display: none;
}

.toh-cart-header-btn span.is-visible {
    display: block;
}

.toh-cart-close {
    display: none;
}

/* #56 Produktseite Tablet/Mobil: Warenkorb als Drawer */
@media (max-width: 1180px) {
    .toh-cart-header-btn {
        display: inline-flex;
    }

    .toh-products-shop-layout {
        display: block;
        width: calc(100% - 28px);
    }

    .toh-products-left {
        width: 100%;
    }

    .toh-cart-box {
        position: fixed;
        inset: 0;
        z-index: 110;
        display: none;
        background: rgba(22, 63, 57, 0.38);
        backdrop-filter: blur(8px);
        padding: 10px 14px 14px;
    }

    .toh-cart-box.is-open {
        display: block;
    }

    .toh-cart-sticky {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        width: min(420px, 100%) !important;
        max-height: calc(100vh - 20px) !important;
        margin-left: auto;
        overflow-y: auto;
        padding: 22px;
        border-radius: 22px;
    }

    .toh-cart-close {
        display: flex;
        position: absolute;
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 50%;
        background: var(--toh-orange);
        color: #fff;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        line-height: 1;
    }

    body.toh-cart-open {
        overflow: hidden;
    }
}

/* #57 Mobile Produkte normal untereinander */
@media (max-width: 700px) {
    .toh-products-shop-layout .toh-products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .toh-products-shop-layout .toh-product-card {
        min-height: auto;
    }

    .toh-products-shop-layout .toh-product-image {
        height: 230px;
    }
}


/* #58 Mobile Warenkorb: Liste scrollbar, Gesamt + Button fest unten */
@media (max-width: 1180px) {
    .toh-cart-sticky {
        display: flex;
        flex-direction: column;
        max-height: calc(100vh - 20px) !important;
        overflow: hidden !important;
    }

    .toh-cart-list {
        flex: 1;
        overflow-y: auto;
        padding-right: 4px;
        margin-right: -4px;
    }

    .toh-cart-total {
        flex: 0 0 auto;
        margin: 16px 0 14px;
        padding-top: 14px;
        border-top: 1px solid var(--toh-border);
        background: rgba(255, 250, 246, 0.96);
    }

    #openOrderPopup {
        flex: 0 0 auto;
        width: 100%;
    }
}


/* #62 Über mich Titel */
.toh-about-title {
    padding: 70px 0 0;
}

.toh-about-title .toh-section-title {
    margin-bottom: 0;
}

/* #64 Video Bereich: Titel oben, Video groß darunter */
.toh-video-title {
    padding: 70px 0 22px;
}

.toh-video-title .toh-section-title {
    margin-bottom: 18px;
}

.toh-video-intro {
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
    color: var(--toh-green-soft);
}

.toh-video-intro p {
    margin: 0;
    line-height: 1.8;
}

.toh-video-section.toh-video-wide {
    display: block;
    grid-template-columns: none;
    width: min(1320px, calc(100% - 48px));
    margin: 36px auto 0;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 250, 246, 0.82);
    border: 1px solid var(--toh-border);
    box-shadow: var(--toh-shadow);
}

.toh-video-wide .toh-video-box {
    width: 100%;
    height: 520px;
    border-radius: 22px;
    overflow: hidden;
    background: #111;
}

.toh-video-wide .toh-video-box video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(1.12) contrast(1.05);
}

/* #65 Video mobil */
@media (max-width: 700px) {
    .toh-video-title {
        padding: 48px 0 12px;
    }

    .toh-video-wide {
        width: calc(100% - 28px);
        margin-top: 24px;
        padding: 14px;
        border-radius: 22px;
    }

    .toh-video-wide .toh-video-box {
        height: 260px;
        border-radius: 18px;
    }
}

/* #68 Hero Feinschliff Desktop */
.toh-hero h1 {
    font-size: 54px;
    line-height: 1.04;
    letter-spacing: -1.2px;
    max-width: 760px;
}

.toh-hero p {
    max-width: 720px;
    line-height: 1.75;
}

.toh-hero-image img {
    filter: brightness(1.08) contrast(1.04) saturate(1.04);
}

/* #69 Hero mobil sauber */
@media (max-width: 700px) {
    .toh-hero h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.4px;
    }

    .toh-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .toh-hero-image {
        margin-top: 26px;
    }
}


/* #70 Schwerpunkte ohne Icons */
.toh-focus-card {
    min-height: 150px;
    padding: 32px 30px;
}

.toh-focus-card strong {
    margin-bottom: 12px;
    font-size: 22px;
}

.toh-focus-card small {
    font-size: 16px;
    line-height: 1.65;
}

/* #73 Produktbilder / No-Image sauber anzeigen */
.toh-product-image {
    background: #fff;
}

 /* #73 Produktbilder und No-Image sauber anzeigen */
.toh-product-image {
    background: #fff;
}

.toh-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 18px;
    background: #fff;
}

/* #74 No-Image Platzhalter komplett anzeigen */
.toh-product-image {
    height: 230px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.toh-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain !important;
    padding: 18px;
    background: #fff;
}


/* #75 Rechtliche Seiten / Cookie-Seite */
.toh-legal-hero {
    padding-top: 90px;
}

.toh-legal-section {
    width: min(1320px, calc(100% - 48px));
    margin: 40px auto 90px;
}

.toh-legal-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.toh-legal-sidebar {
    position: sticky;
    top: 120px;
}

.toh-legal-sidecard {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 250, 246, 0.86);
    border: 1px solid var(--toh-border);
    box-shadow: var(--toh-shadow);
}

.toh-legal-sidecard h3 {
    margin: 0 0 18px;
    color: var(--toh-green);
}

.toh-legal-sidecard a {
    display: block;
    padding: 12px 14px;
    margin-bottom: 8px;
    border-radius: 12px;
    color: var(--toh-green-soft);
    text-decoration: none;
    font-weight: 700;
}

.toh-legal-sidecard a:hover,
.toh-legal-sidecard a.active {
    background: rgba(231, 169, 139, 0.20);
    color: var(--toh-orange-dark);
}

.toh-legal-card {
    padding: 52px;
    border-radius: 28px;
    background: rgba(255, 250, 246, 0.88);
    border: 1px solid var(--toh-border);
    box-shadow: var(--toh-shadow);
}

.toh-legal-block {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(22, 63, 57, 0.12);
}

.toh-legal-block:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.toh-legal-block h2 {
    margin: 0 0 16px;
    color: var(--toh-green);
}

.toh-legal-block h3 {
    margin: 24px 0 10px;
    color: var(--toh-green);
}

.toh-legal-block p {
    color: var(--toh-text);
    line-height: 1.8;
}

.toh-legal-block ul {
    margin: 14px 0 0;
    padding-left: 22px;
}

.toh-legal-block li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--toh-text);
}

.toh-legal-block a {
    color: var(--toh-orange-dark);
    font-weight: 800;
}

@media (max-width: 900px) {
    .toh-legal-layout {
        grid-template-columns: 1fr;
    }

    .toh-legal-sidebar {
        position: static;
    }

    .toh-legal-card {
        padding: 34px 24px;
    }
}

@media (max-width: 700px) {
    .toh-legal-section {
        width: calc(100% - 28px);
        margin-top: 28px;
        margin-bottom: 60px;
    }

    .toh-legal-card {
        border-radius: 22px;
        padding: 28px 20px;
    }

    .toh-legal-sidecard {
        border-radius: 20px;
        padding: 22px;
    }
}

/* #76 Cookie-Hinweis ohne Icon */
.toh-cookie-icon {
    display: none !important;
}

.toh-cookie-content {
    padding-left: 0 !important;
}

@media (max-width: 390px) {
    .toh-hero h1, .toh-page-hero h1 {
        font-size: 28px;
    }
}

/* =========================================================
   #77 NEW TRINITY STYLE FOR PRODUKTE / KONTAKT / LEGAL
========================================================= */

/* Seitenabstand */
.toh-page {
    padding-top: 54px;
}

/* Seiten-Hero */
.toh-page-hero {
    background: rgba(255, 248, 234, 0.88);
    border: 1px solid var(--toh-border);
    border-radius: 0;
    box-shadow: none;
}

.toh-page-hero h1 {
    color: var(--toh-green);
}

.toh-eyebrow,
.toh-section-title p {
    color: var(--toh-orange);
}

/* Produktseite */
.toh-products-shop-layout {
    width: min(1380px, calc(100% - 48px));
    grid-template-columns: minmax(0, 1fr) 330px;
}

.toh-products-shop-layout .toh-products-grid {
    gap: 28px;
}

.toh-products-shop-layout .toh-product-card {
    border-radius: 0;
    background: rgba(255, 248, 234, 0.78);
    border: 1px solid var(--toh-border);
    box-shadow: 0 14px 36px rgba(49, 35, 30, 0.08);
}

.toh-products-shop-layout .toh-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(49, 35, 30, 0.12);
}

.toh-products-shop-layout .toh-product-image {
    height: 235px;
    background: #fff;
}

.toh-products-shop-layout .toh-product-image img {
    object-fit: contain;
    padding: 16px;
    background: #fff;
}

.toh-products-shop-layout .toh-product-content {
    padding: 24px 24px 26px;
    text-align: left;
}

.toh-products-shop-layout .toh-product-card h2 {
    color: var(--toh-green);
    font-size: 25px;
    min-height: 62px;
}

.toh-products-shop-layout .toh-product-card p {
    color: var(--toh-text);
    min-height: 58px;
}

.toh-products-shop-layout .toh-product-card strong {
    color: var(--toh-green);
    font-weight: 900;
}

.toh-products-shop-layout .toh-product-card .toh-btn {
    border-radius: 0;
}

/* Warenkorb */
.toh-cart-sticky {
    border-radius: 0;
    background: rgba(255, 248, 234, 0.96);
    border: 1px solid var(--toh-border);
    box-shadow: 0 22px 60px rgba(49, 35, 30, 0.14);
}

.toh-cart-empty,
.toh-cart-item,
.toh-order-total-preview,
.toh-payment-info {
    border-radius: 0;
    background: rgba(255, 248, 234, 0.68);
    border: 1px solid var(--toh-border);
}

.toh-cart-controls button {
    background: var(--toh-cream-soft);
    color: var(--toh-green);
    border-radius: 50%;
}

.toh-cart-controls .cart-remove,
.toh-cart-close,
.toh-order-modal-close {
    background: var(--toh-orange);
    color: #fff;
}

/* Formular / Kontakt */
.toh-form,
.toh-contact-box {
    border-radius: 0;
    background: rgba(255, 248, 234, 0.90);
    border: 1px solid var(--toh-border);
    box-shadow: 0 18px 45px rgba(49, 35, 30, 0.10);
}

.toh-form input,
.toh-form textarea,
.toh-form select {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(92, 46, 50, 0.22);
}

.toh-form input:focus,
.toh-form textarea:focus,
.toh-form select:focus {
    border-color: var(--toh-orange);
    box-shadow: 0 0 0 4px rgba(255, 104, 70, 0.16);
}

.toh-captcha-image {
    border-radius: 0;
    background: rgba(255, 248, 234, 0.85);
    border: 1px solid var(--toh-border);
}

.toh-captcha-image button {
    background: var(--toh-orange);
    color: #fff;
}

/* Kontaktbox / Map */
.toh-contact-box a {
    color: var(--toh-orange);
}

.toh-map-text {
    background: rgba(245, 143, 175, 0.18);
    border-left: 4px solid var(--toh-orange);
}

.toh-map-box {
    border-radius: 0;
    border: 1px solid var(--toh-border);
    background: var(--toh-cream-soft);
}

/* Footer passend zur neuen Startseite */
.toh-footer {
    background: var(--toh-green);
    color: rgba(255, 248, 234, 0.90);
    border-top: 1px solid rgba(255, 248, 234, 0.18);
}

.toh-footer .toh-logo,
.toh-footer h3,
.toh-footer strong {
    color: var(--toh-cream);
}

.toh-footer p,
.toh-footer a {
    color: rgba(255, 248, 234, 0.78);
}

.toh-footer a:hover {
    color: #fff;
}

/* Legal-Seiten */
.toh-legal-hero {
    background: rgba(255, 248, 234, 0.90);
}

.toh-legal-sidecard,
.toh-legal-card {
    border-radius: 0;
    background: rgba(255, 248, 234, 0.88);
    border: 1px solid var(--toh-border);
    box-shadow: 0 18px 45px rgba(49, 35, 30, 0.10);
}

.toh-legal-sidecard a {
    border-radius: 0;
}

.toh-legal-sidecard a:hover,
.toh-legal-sidecard a.active {
    background: rgba(255, 104, 70, 0.13);
    color: var(--toh-orange-dark);
}

.toh-legal-block {
    border-bottom: 1px solid var(--toh-border);
}

.toh-legal-block a {
    color: var(--toh-orange-dark);
}

/* Mobile */
@media (max-width: 1024px) {
    .toh-nav {
        background: rgba(15, 75, 63, 0.97);
        border: 1px solid rgba(255, 248, 234, 0.22);
        border-radius: 0;
    }

    .toh-nav a {
        color: var(--toh-cream);
    }

    .toh-menu-btn span {
        background: var(--toh-cream);
    }
}

@media (max-width: 700px) {
    .toh-products-shop-layout {
        width: calc(100% - 28px);
    }

    .toh-products-shop-layout .toh-product-content {
        text-align: left;
    }

    .toh-products-shop-layout .toh-product-card h2,
    .toh-products-shop-layout .toh-product-card p {
        min-height: 0;
    }

    .toh-products-shop-layout .toh-product-image {
        height: 245px;
    }

    .toh-page-hero {
        padding: 32px 24px;
    }

    .toh-page-hero h1 {
        font-size: 32px;
        overflow-wrap: anywhere;
    }
}

/* #78 Warenkorb Versandanzeige */
.toh-cart-total {
    display: block;
}

.toh-cart-total > span {
    display: block;
    margin-bottom: 4px;
}

.toh-cart-total strong {
    display: block;
    margin-top: 8px;
    font-size: 20px;
}

/* #79 Bestell-Popup: Ausgewählte Produkte schöner anzeigen */
#selectedProduct {
    min-height: 175px;
    resize: vertical;
    background: rgba(255, 248, 234, 0.74);
    border: 1px solid var(--toh-border);
    color: var(--toh-green);
    font-weight: 800;
    line-height: 1.45;
    padding: 18px 18px;
    overflow-y: auto;
}

/* Scrollbar im ausgewählte-Produkte-Feld dezenter */
#selectedProduct::-webkit-scrollbar {
    width: 8px;
}

#selectedProduct::-webkit-scrollbar-track {
    background: rgba(255, 248, 234, 0.65);
}

#selectedProduct::-webkit-scrollbar-thumb {
    background: rgba(15, 75, 63, 0.35);
    border-radius: 999px;
}

#selectedProduct::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 75, 63, 0.55);
}

/* Gesamtsumme-Box ruhiger und passend */
.toh-order-total-preview {
    border-radius: 0;
    background: rgba(255, 248, 234, 0.82);
    border: 1px solid var(--toh-border);
    padding: 16px 18px;
}

.toh-order-total-preview span,
.toh-order-total-preview strong {
    color: var(--toh-green);
}

/* #80 Produktseite Hinweis-Badge Bundle & Versand */
.toh-product-info-badge {
    margin-top: 34px;
    padding: 26px 30px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background:
        radial-gradient(circle at top left, rgba(245, 143, 175, 0.20), transparent 34%),
        linear-gradient(135deg, rgba(255, 248, 234, 0.92), rgba(251, 240, 223, 0.92));
    border: 1px solid var(--toh-border);
    box-shadow: 0 16px 38px rgba(49, 35, 30, 0.10);
}

.toh-product-info-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--toh-orange);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(255, 104, 70, 0.24);
}

.toh-product-info-badge strong {
    display: block;
    margin-bottom: 10px;
    color: var(--toh-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.15;
}

.toh-product-info-badge p {
    margin: 0 0 8px;
    color: var(--toh-text);
    line-height: 1.65;
}

.toh-product-info-badge p:last-child {
    margin-bottom: 0;
}

.toh-product-info-badge b {
    color: var(--toh-green);
}

@media (max-width: 700px) {
    .toh-product-info-badge {
        margin-top: 26px;
        padding: 22px;
        flex-direction: column;
        gap: 16px;
    }

    .toh-product-info-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 22px;
    }

    .toh-product-info-badge strong {
        font-size: 23px;
    }
}


/* #81 Header Produkte/Kontakt wie Startseite transparent */
/* #81 Header Produkte/Kontakt wie Startseite transparent, aber lesbar */
.toh-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(18, 42, 35, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 248, 234, 0.34);
}
/* #82 Header Schrift besser sichtbar */
.toh-header .toh-nav a {
    color: #fff8ea !important;
    font-weight: 900;
    text-shadow: none !important;
}

.toh-header .toh-nav a:hover,
.toh-header .toh-nav a.active {
    color: var(--toh-orange) !important;
    text-shadow: none;
}

.toh-header .toh-logo {
    color: #fff8ea !important;
    text-shadow: none !important;
}
.toh-header .toh-logo {
    color: var(--toh-cream) !important;
}

.toh-header .toh-nav a {
    color: rgba(255, 248, 234, 0.94) !important;
}

.toh-header .toh-nav a:hover,
.toh-header .toh-nav a.active {
    color: var(--toh-orange-soft) !important;
}

.toh-header .toh-menu-btn span {
    background: var(--toh-cream) !important;
}

.toh-cart-header-btn {
    background: rgba(255, 248, 234, 0.18) !important;
    border-color: rgba(255, 248, 234, 0.34) !important;
    color: var(--toh-cream) !important;
}

/* #82 Inner Pages: Hintergrund hinter transparentem Header */
.toh-page {
    margin-top: -86px;
    padding-top: 140px;
}

/* =========================================================
   #83 PRODUKTBILDER – FINALE DARSTELLUNG
   Diesen Block ganz unten in style.css einfügen
========================================================= */

/* Produktkarten */
.toh-products-shop-layout .toh-products-left .toh-product-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 248, 234, 0.92);
}

/* Bildbereich */
.toh-products-shop-layout
.toh-products-left
.toh-product-card
.toh-product-image {
    position: relative;
    width: 100%;
    height: 330px;
    min-height: 330px;
    display: block;
    overflow: hidden;
    background: #f4efe7;
}

/* Bilder groß und ohne weißen Innenrand */
.toh-products-shop-layout
.toh-products-left
.toh-product-card
.toh-product-image
img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block !important;

    object-fit: cover !important;
    object-position: center center;

    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

/* Leichter hochwertiger Zoom beim Darüberfahren */
.toh-products-shop-layout
.toh-products-left
.toh-product-card:hover
.toh-product-image
img {
    transform: scale(1.035);
    filter: brightness(1.03) contrast(1.02);
}

/* Inhalt der Karte */
.toh-products-shop-layout
.toh-products-left
.toh-product-card
.toh-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    text-align: left;
}

/* Produkttitel */
.toh-products-shop-layout
.toh-products-left
.toh-product-card
.toh-product-content
h2 {
    min-height: 58px;
    margin: 0 0 14px;
    font-size: 27px;
    line-height: 1.08;
}

/* Beschreibung */
.toh-products-shop-layout
.toh-products-left
.toh-product-card
.toh-product-content
p {
    min-height: 76px;
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.6;
}

/* Preis */
.toh-products-shop-layout
.toh-products-left
.toh-product-card
.toh-product-content
strong {
    display: block;
    min-height: 24px;
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.45;
}

/* Button immer unten */
.toh-products-shop-layout
.toh-products-left
.toh-product-card
.toh-product-content
.toh-btn {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
}

/* =========================================================
   BUNDLE-KARTE
========================================================= */

.toh-products-shop-layout
.toh-products-left
.toh-product-card.toh-product-bundle {
    background:
        linear-gradient(
            145deg,
            rgba(255, 248, 234, 0.96),
            rgba(251, 240, 223, 0.96)
        );
    border: 2px solid rgba(255, 104, 70, 0.50);
}

/* Bundle-Bild quadratisch und vollständig sichtbar */
.toh-products-shop-layout
.toh-products-left
.toh-product-card.toh-product-bundle
.toh-product-image {
    height: 330px;
    min-height: 330px;
    background: #f5eee4;
}

.toh-products-shop-layout
.toh-products-left
.toh-product-card.toh-product-bundle
.toh-product-image
img {
    object-fit: cover !important;
    object-position: center center;
}

/* Bundle-Preis hervorheben */
.toh-products-shop-layout
.toh-products-left
.toh-product-card.toh-product-bundle
.toh-product-content
strong {
    color: var(--toh-orange-dark);
    font-size: 16px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {
    .toh-products-shop-layout
    .toh-products-left
    .toh-product-card
    .toh-product-image {
        height: 340px;
        min-height: 340px;
    }
}

/* =========================================================
   MOBIL
========================================================= */

@media (max-width: 700px) {
    .toh-products-shop-layout
    .toh-products-left
    .toh-product-card {
        min-height: auto;
    }

    .toh-products-shop-layout
    .toh-products-left
    .toh-product-card
    .toh-product-image {
        height: 390px;
        min-height: 390px;
    }

    .toh-products-shop-layout
    .toh-products-left
    .toh-product-card
    .toh-product-content {
        padding: 22px;
    }

    .toh-products-shop-layout
    .toh-products-left
    .toh-product-card
    .toh-product-content
    h2 {
        min-height: 0;
        font-size: 27px;
    }

    .toh-products-shop-layout
    .toh-products-left
    .toh-product-card
    .toh-product-content
    p {
        min-height: 0;
        font-size: 15px;
    }

    .toh-products-shop-layout
    .toh-products-left
    .toh-product-card.toh-product-bundle
    .toh-product-image {
        height: 340px;
        min-height: 340px;
    }
}

/* Sehr kleine Smartphones */
@media (max-width: 430px) {
    .toh-products-shop-layout
    .toh-products-left
    .toh-product-card
    .toh-product-image {
        height: 340px;
        min-height: 340px;
    }

    .toh-products-shop-layout
    .toh-products-left
    .toh-product-card.toh-product-bundle
    .toh-product-image {
        height: 310px;
        min-height: 310px;
    }
}

/* =========================================================
   ESSENCE PRODUKTKARTEN
========================================================= */

.toh-product-subtitle {
    margin: -6px 0 16px !important;
    color: var(--toh-coral) !important;
    font-size: 13px !important;
    font-weight: 900;
    line-height: 1.45 !important;
    letter-spacing: 0.3px;
}

button.toh-product-image {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

button.toh-product-image img {
    transition: transform 0.35s ease;
}

button.toh-product-image:hover img {
    transform: scale(1.025);
}

.toh-essence-more {
    width: fit-content;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: var(--toh-coral);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.toh-essence-more::after {
    content: " →";
}

.toh-essence-more:hover {
    color: var(--toh-green);
}

/* =========================================================
   ESSENCE POPUP
========================================================= */

body.toh-modal-open {
    overflow: hidden;
}

.toh-essence-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;
}

.toh-essence-modal.is-open {
    display: flex;
}

.toh-essence-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 25, 0.72);
    backdrop-filter: blur(5px);
}

.toh-essence-modal-box {
    position: relative;
    z-index: 2;

    width: min(760px, 100%);
    max-height: calc(100vh - 60px);
    overflow-y: auto;

    padding: 54px 56px;

    background:
        radial-gradient(
            circle at top right,
            rgba(245, 143, 175, 0.18),
            transparent 34%
        ),
        var(--toh-cream);

    border: 1px solid var(--toh-line);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.toh-essence-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: 1px solid var(--toh-line);
    background: rgba(255, 248, 234, 0.9);
    color: var(--toh-green);

    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.toh-essence-modal-box h2 {
    margin: 0 0 14px;
    font-size: 46px;
    line-height: 1.05;
}

.toh-essence-lead {
    margin: 0 0 24px;
    color: var(--toh-coral);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.35;
}

.toh-essence-modal-box > p:not(.toh-eyebrow):not(.toh-essence-lead) {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.75;
}

.toh-essence-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;

    margin: 32px 0;
}

.toh-essence-info > div {
    padding: 22px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid var(--toh-line);
}

.toh-essence-info h3 {
    margin: 0 0 10px;
    color: var(--toh-coral);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.toh-essence-info p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}

.toh-essence-info ul {
    margin: 0;
    padding-left: 18px;
}

.toh-essence-info li {
    margin-bottom: 6px;
    line-height: 1.55;
}

/* Mobile */
@media (max-width: 700px) {
    .toh-essence-modal {
        align-items: flex-end;
        padding: 0;
    }

    .toh-essence-modal-box {
        width: 100%;
        max-height: 92vh;
        padding: 46px 22px 34px;
    }

    .toh-essence-modal-box h2 {
        font-size: 35px;
    }

    .toh-essence-lead {
        font-size: 21px;
    }

    .toh-essence-info {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .toh-essence-info > div {
        padding: 19px;
    }

    .toh-essence-modal-box > .toh-btn {
        width: 100%;
    }
}

/* =========================================================
   ESSENCE KARTEN – RUHIG UND EINHEITLICH
========================================================= */

.toh-product-card {
    display: flex;
    flex-direction: column;
}

.toh-product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.toh-product-title {
    width: fit-content;
    margin: 0 0 22px;
    padding: 0;
    border: 0;
    background: transparent;

    color: var(--toh-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;

    cursor: pointer;
}

.toh-product-title:hover {
    color: var(--toh-coral);
}

.toh-product-content > p {
    min-height: 112px;
    margin: 0 0 22px;

    color: var(--toh-text);
    font-size: 15px;
    line-height: 1.65;
}

.toh-product-content > strong {
    display: block;
    margin: auto 0 22px;

    color: var(--toh-green);
    font-size: 16px;
    line-height: 1.4;
}

.toh-product-content > .product-select {
    width: 100%;
    margin-top: 0;
}

button.toh-product-image {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

button.toh-product-image::after {
    content: "Details ansehen";

    position: absolute;
    right: 14px;
    bottom: 14px;

    padding: 8px 12px;
    background: rgba(255, 248, 234, 0.92);
    color: var(--toh-green);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(5px);
    transition: 0.25s ease;
}

button.toh-product-image:hover::after {
    opacity: 1;
    transform: translateY(0);
}

button.toh-product-image img {
    transition: transform 0.3s ease;
}

button.toh-product-image:hover img {
    transform: scale(1.015);
}

@media (max-width: 760px) {
    .toh-product-content > p {
        min-height: 0;
    }

    button.toh-product-image::after {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   ESSENCE PRODUKTKARTEN FINAL
   Gleiche Höhen + Duftprofil-Button
========================================================= */

.toh-products-grid {
    align-items: stretch !important;
}

.toh-product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.toh-product-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;

    padding: 26px 24px 24px !important;
}

/* Produktname */
.toh-product-title {
    min-height: 58px !important;
    margin: 0 0 20px !important;
}

/* Kurzbeschreibung überall gleich hoch */
.toh-product-content > p {
    min-height: 120px !important;
    margin: 0 0 20px !important;

    font-size: 15px !important;
    line-height: 1.65 !important;
}

/* Duftprofil-Button */
.toh-duftprofil-btn {
    width: 100% !important;
    min-height: 46px !important;
    margin: 0 0 20px !important;
    padding: 0 16px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    border: 1px solid var(--toh-line) !important;
    background: rgba(255, 248, 234, 0.65) !important;
    color: var(--toh-green) !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 0.7px !important;
    text-transform: uppercase !important;

    cursor: pointer !important;
    transition: 0.22s ease !important;
}

.toh-duftprofil-btn b {
    color: var(--toh-coral) !important;
    font-size: 25px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

.toh-duftprofil-btn:hover {
    background: var(--toh-coral) !important;
    border-color: var(--toh-coral) !important;
    color: var(--toh-orange) !important;
}

.toh-duftprofil-btn:hover b {
    color: var(--toh-orange) !important;
}

/* Preis bei allen Karten auf gleicher Höhe */
.toh-product-price {
    display: block !important;
    min-height: 28px !important;
    margin: auto 0 20px !important;

    color: var(--toh-green) !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
}

/* Bestellbutton ganz unten */
.toh-product-content .product-select {
    width: 100% !important;
    min-height: 48px !important;
    margin: 0 !important;
}

/* Mobile */
@media (max-width: 760px) {
    .toh-product-title,
    .toh-product-content > p {
        min-height: 0 !important;
    }

    .toh-product-price {
        margin-top: 0 !important;
    }
}

.toh-btn-coral {
    background: var(--toh-orange);
    color:#fff;
}
.toh-btn-coral:hover{
    color:#000;
}

/* Mobile: Hinweis „Details ansehen“ auf Produktbild ausblenden */
@media (max-width: 760px) {
    button.toh-product-image::after {
        display: none !important;
        content: none !important;
    }
}


/* Mückenspray und Bundle an den Essence-Karten ausrichten */
.toh-duftprofil-placeholder {
    width: 100% !important;
    min-height: 46px !important;
    margin: 0 0 20px !important;

    visibility: hidden !important;
    pointer-events: none !important;
}

.toh-product-price {
    display: flex !important;
    align-items: center !important;

    min-height: 46px !important;
    margin: 0 0 20px !important;
}

.toh-bundle-price {
    color: var(--toh-coral) !important;
    line-height: 1.4 !important;
}

.toh-product-content .product-select {
    width: 100% !important;
    min-height: 48px !important;
    margin-top: auto !important;
}

/* =========================================================
   PRODUKTKARTEN – PREIS UND BUTTON EXAKT AUSRICHTEN
========================================================= */

.toh-product-card .toh-product-content {
    display: grid !important;
    grid-template-rows:
        64px      /* Produktname */
        125px     /* Kurzbeschreibung */
        46px      /* Duftprofil oder Platzhalter */
        48px      /* Preis */
        48px      /* Bestellbutton */
    !important;

    gap: 18px !important;
    height: 100% !important;
    padding: 28px 24px 24px !important;
}

/* Produktname */
.toh-product-card .toh-product-title,
.toh-product-card .toh-product-content > h2 {
    min-height: 0 !important;
    margin: 0 !important;
    align-self: start !important;
}

/* Kurztext */
.toh-product-card .toh-product-content > p {
    min-height: 0 !important;
    margin: 0 !important;
    align-self: start !important;
}

/* Echter Duftprofil-Button */
.toh-product-card .toh-duftprofil-btn {
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
}

/* Unsichtbarer Platzhalter bei Mückenspray und Bundle */
.toh-product-card .toh-duftprofil-placeholder {
    display: block !important;
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;

    visibility: hidden !important;
    pointer-events: none !important;
}

/* Preis immer gleiche Zeile */
.toh-product-card .toh-product-price {
    display: flex !important;
    align-items: center !important;

    min-height: 48px !important;
    margin: 0 !important;

    font-size: 16px !important;
    line-height: 1.35 !important;
}

/* Bundle-Preis darf zweizeilig sein */
.toh-product-card .toh-bundle-price {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;

    color: var(--toh-coral) !important;
    white-space: normal !important;
}

/* Bestellbuttons exakt unten */
.toh-product-card .product-select {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;

    align-self: end !important;
}


.yoga-options {
    margin-top: 15px;
    padding: 18px;
    border: 1px solid #e4ddd4;
    border-radius: 10px;
    background: #faf7f3;
}

.yoga-options p {
    margin: 0 0 12px;
    font-weight: 600;
}

.yoga-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    cursor: pointer;
	font-weight:200;
}

.yoga-options label:last-child {
    margin-bottom: 0;
}

.yoga-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
}
.toh-privacy-check {
    margin: 18px 0;
}

.toh-privacy-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
	font-weight:200;
}

.toh-privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.toh-privacy-check a {
    color: inherit;
    text-decoration: underline;
	
}

