/* ========================================
   WOCHENBETT - CSS STYLESHEET
   Modern, warm design for new mothers
   ======================================== */

/* ========================================
   ROOT & VARIABLES
   ======================================== */

:root {
    /* Color Palette - Warm, nurturing colors */
    --primary-color: #E8B4C8;        /* Soft rose */
    --secondary-color: #F5D5E3;      /* Light pink */
    --accent-color: #D4A5A5;         /* Dusty mauve */
    --dark-color: #5A4A4A;           /* Warm brown */
    --light-color: #FBF8F6;          /* Cream white */
    --text-color: #4A4A4A;           /* Dark gray */
    --border-color: #E8D5D5;         /* Light border */
    --success-color: #A8D5BA;        /* Soft green */
    --warning-color: #F4B183;        /* Warm orange */
    --light-gray: #f9f9f9;
    --logo-color: #79c1c1;

    /* Typography */
    --font-family: 'Outfit', sans-serif;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-xxl: 32px;
    --font-size-xxxl: 48px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & GLOBAL STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1 {
    font-size: var(--font-size-xxxl);
    font-weight: 700;
    color: #e09898;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */

.navbar {
    background: linear-gradient(135deg, #f3ede2 0%, #d3a4a4 100%);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    display: block;
}

.nav-link:hover,
.nav-link.active {
    background-color: #e09898;
    color: white;
    box-shadow: var(--shadow-sm);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 4px 0;
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    min-height: calc(100vh - 200px);
}

.page {
    display: none;
    animation: fadeIn var(--transition-normal);
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(0.95) brightness(0.55);
    z-index: 0;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1000px;
    width: 100%;
    text-align: left;
    display: grid;
    gap: 1rem;
}

.hero__title {
    font-size: clamp(1.6rem, 4.5vw, 3rem);
    line-height: 1.05;
    font-weight: 700;
    color: #e09898;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.95;
    max-width: 100%;
    color: white;
    text-align: center;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}

.btn--primary {
    background: #e09898;
    color: #fff;
    backdrop-filter: blur(4px);
    transition: background .18s ease, transform .08s ease;
}

.btn--primary:hover {
    background: #c87878;
    color: #fff;
    transform: translateY(-2px);
}

.hero__credit {
    font-size: .85rem;
    opacity: .8;
}

/* ========================================
   SHOP SECTION
   ======================================== */

.shop-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: var(--spacing-xxl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.shop-container h1 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.shop-intro {
    text-align: center;
    font-size: var(--font-size-lg);
}

/* Product Row Layout */
.product-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.product-image {
    width: 40%;
    max-width: 350px;
    border-radius: 10px;
    object-fit: cover;
    height: auto;
}

.product-info {
    width: 55%;
    flex: 1;
}

.product-info h2 {
    margin-top: 0;
    font-size: 1.8rem;
}

.product-info p {
    margin: 10px 0 20px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.product-btn {
    display: inline-block;
    border: 2px solid #e09898;
    background: #ffffff;
    color: #e09898;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.product-btn:hover {
    background: #e09898;
    color: #ffffff;
}

.row-normal {
    /* default: image left, text right */
}

.row-reverse {
    flex-direction: row-reverse;
}

/* Products Grid (alternative layout) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card h3 {
    padding: var(--spacing-md) var(--spacing-md) 0;
    color: var(--dark-color);
}

.product-card p {
    padding: 0 var(--spacing-md);
    color: var(--text-color);
    font-size: var(--font-size-base);
    flex-grow: 1;
}

.product-details {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
}

.add-to-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.add-to-cart:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

/* ========================================
   SPOTIFY SECTION
   ======================================== */

.spotify {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5%;
    text-align: center;
}

.btn2 {
    color: #e09898;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #e09898;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
}

.btn2:hover {
    color: white;
}

.btn2::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: #e1bead;
    z-index: -1;
    transition: all 1s;
}

.btn2:hover::before {
    width: 160%;
}

.btn2Link {
    color: #e09898;
}

.btn2Link:hover {
    color: white;
}

/* ========================================
   CTA BUTTON
   ======================================== */

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-lg);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   FEATURES SECTION (Warum Wochenbettliebe)
   ======================================== */

.features {
    max-width: 1200px;
    margin: var(--spacing-xxl) auto;
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.features h2 {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #e1bead;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-color);
    font-size: var(--font-size-base);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    max-width: 1200px;
    margin: var(--spacing-xxl) auto;
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: #eee0d7;
    border-radius: var(--border-radius-lg);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid #e1bead;
}

.testimonial-card p {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--spacing-lg);
    display: grid;
    justify-content: space-evenly;
    grid-template-columns: 0.8fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.about-content h1 {
    margin-bottom: var(--spacing-lg);
}

.about-content h2 {
    margin-top: var(--spacing-lg);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-illustration {
    font-size: 200px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xxl);
    border-top: 2px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.stat p {
    color: var(--text-color);
    margin: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.contact-container h1 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.contact-intro {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-color);
    margin-bottom: var(--spacing-xxl);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: var(--spacing-xxl);
}

.contact-form {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 180, 200, 0.1);
}

.submit-button {
    background: #e09898;
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-lg);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: all var(--transition-normal);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
    display: none;
}

.form-message.success {
    display: block;
    background-color: var(--success-color);
    color: white;
    border-left: 4px solid #6BA587;
}

.form-message.error {
    display: block;
    background-color: var(--warning-color);
    color: white;
    border-left: 4px solid #D97E3E;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.info-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--light-color));
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
}

.info-card h3 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.info-card p {
    color: var(--text-color);
    margin: 0;
}

/* ========================================
   BLOG SECTION
   ======================================== */

.content-wrapper {
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px;
}

.main-content2 {
    flex: 3;
    padding-right: 40px;
}

.sidebar {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

.blog-post {
    max-width: 750px;
}

.post-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.post-meta {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.featured-image-container {
    position: relative;
    margin-bottom: 20px;
}

.featured-image {
    width: 50%;
    height: auto;
    display: block;
}

.date-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #fff;
    padding: 5px 10px;
    text-align: center;
    line-height: 1.2;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.date-overlay .day {
    display: block;
    font-weight: 700;
    color: var(--logo-color);
}

.date-overlay .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
}

.reading-time {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.post-excerpt p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.post-excerpt strong {
    color: var(--logo-color);
}

.read-more-button {
    background-color: #e1bead;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 40px;
}

.read-more-button:hover {
    background-color: #e09898;
}

/* Sidebar */
.sidebar h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts ul {
    list-style: none;
    margin-bottom: 40px;
}

.recent-posts li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.recent-posts .post-date {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    padding: 5px;
    text-align: center;
    line-height: 1.2;
    font-size: 0.8rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.recent-posts .post-date .day {
    display: block;
    font-weight: 700;
    color: var(--logo-color);
}

.recent-posts .post-date .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
}

.recent-posts a {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
}

.categories ul {
    list-style: none;
}

.categories li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.categories li:last-child {
    border-bottom: none;
}

.categories a {
    display: block;
    font-size: 0.95rem;
    color: #555;
}

/* ========================================
   NEWSLETTER
   ======================================== */

.newsletter-container {
    padding: 30px;
    text-align: center;
    max-width: 50%;
    width: 100%;
}

.newsletter-container h2 {
    color: #333;
    margin-bottom: 10px;
}

.newsletter-container p {
    color: #666;
    margin-bottom: 20px;
}

#newsletter-email {
    flex-grow: 1;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

#newsletter-email:focus {
    border-color: #e09898;
}

#newsletter-submit-button {
    background-color: #e09898;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

#newsletter-submit-button:hover {
    background-color: #d48888;
}

.message {
    font-size: 14px;
    padding: 0;
    margin-top: 0;
    border-radius: 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease, margin-top 0.3s ease;
}

.message.success,
.message.error {
    max-height: 80px;
    opacity: 1;
    padding: 10px 14px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    text-align: left;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.privacy-note {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.cookie-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    width: 90%;
    max-width: 420px;
    z-index: 9998;
    box-shadow: var(--shadow-lg);
    border: 2px solid #e1bead;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.cookie-popup.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.cookie-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cookie-popup-inner h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    font-weight: 700;
}

.cookie-popup-inner p {
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    color: var(--text-color);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.cookie-btn {
    flex: 1;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background: var(--accent-color);
}

.cookie-decline {
    background: var(--light-color);
    border: 2px solid var(--border-color);
    color: var(--dark-color);
}

.cookie-decline:hover {
    background: #f3ede2;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
    background: white;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.legal-container h1 {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-color);
}

.legal-container h2 {
    margin-top: var(--spacing-lg);
}

.legal-container h3 {
    margin-top: var(--spacing-md);
}

.legal-container p {
    text-align: justify;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #6B5A5A 100%);
    color: white;
    padding: var(--spacing-xxl) var(--spacing-lg);
    margin-top: var(--spacing-xxl);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
    justify-items: center;
}

.footer-section h3 {
    color: #e1bead;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-icon {
    font-size: 24px;
    transition: transform var(--transition-fast);
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.illustration {
    font-size: 150px;
    animation: float 3s ease-in-out infinite;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   RESPONSIVE: TABLET (max-width: 1024px)
   ======================================== */

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 var(--spacing-sm);
    }

    .hero__title {
        font-size: var(--font-size-xxl);
    }

    .hero__subtitle {
        font-size: var(--font-size-base);
    }

    .hero-image {
        width: 30% !important;
    }

    .logoSchriftzug {
        max-height: 35px !important;
        width: auto !important;
    }

    .logoHeader {
        display: none;
    }

    .date-overlay {
        display: none;
    }
}

/* ========================================
   RESPONSIVE: MOBILE (max-width: 768px)
   ======================================== */

@media (max-width: 768px) {
    :root {
        --font-size-xxxl: 32px;
        --spacing-xxl: 2rem;
        --spacing-xl: 1.5rem;
    }

    /* Navigation - Hamburger */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        flex-shrink: 0;
        cursor: pointer;
        z-index: 1100;
        padding: 0;
        background: none;
        border: none;
    }

    .hamburger span {
        display: block !important;
        width: 30px !important;
        height: 3px !important;
        background-color: #5A4A4A !important;
        border-radius: 3px !important;
        margin: 0 !important;
        opacity: 1 !important;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 1rem;
    }

    /* Override the inline width: 20% on the logo anchor */
    .nav-container > a {
        width: auto !important;
        flex: 1;
    }

    .nav-logo {
        width: auto !important;
        text-align: left;
        margin-bottom: 0;
    }

    .logoSchriftzug {
        max-height: 38px !important;
        width: auto !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fbf8f6;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding-top: 40px;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
    }

    .nav-item {
        margin: 10px 0;
        padding: 10px 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-link {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        padding: 15px 0;
        border-radius: 0;
    }

    /* Hero */
    .hero {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .startscreenContainer {
        flex-direction: column-reverse !important;
    }

    .hero__content {
        width: 100%;
        padding-right: 0;
        order: 2;
        display: table-column-group;
    }

    .hero-image {
        width: 50% !important;
        margin-bottom: var(--spacing-md);
        order: 1;
        display: none;
    }

    .hero-image2 {
        width: 50% !important;
        margin-bottom: var(--spacing-md);
        order: 1;
        display: flex !important;
        justify-content: center;
    }

    .hero__subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__credit {
        margin-top: 5%;
    }

    /* Logo */
    .logoSchriftzug {
        max-height: 38px !important;
        width: auto !important;
    }

    .logoHeader {
        display: none;
    }

    /* Product layout */
    .product-row,
    .row-reverse {
        flex-direction: column;
        text-align: center;
    }

    .product-image,
    .product-info {
        width: 100%;
    }

    .product-image {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Other sections */
    .date-overlay {
        display: none;
    }

    .spotify {
        text-align: center;
    }

    .aboutSig {
        width: 100% !important;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .profile-illustration {
        font-size: 150px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .testimonials-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .illustration {
        font-size: 100px;
    }

    /* Newsletter */
    .newsletter-container {
        max-width: 90%;
    }

    .form-group {
        flex-direction: column;
    }

    #newsletter-email {
        border-radius: var(--border-radius-sm);
        margin-bottom: var(--spacing-sm);
    }

    #newsletter-submit-button {
        border-radius: var(--border-radius-sm);
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: var(--spacing-lg);
    }

    /* Blog sidebar */
    .content-wrapper {
        flex-direction: column;
    }

    .main-content2 {
        padding-right: 0;
    }

    .sidebar {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 20px;
        margin-top: 20px;
    }

    /* Leseprobe */
    .leseprobe-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* PDF Modal */
    .pdf-modal-box {
        width: 98vw;
        height: 90vh;
    }

    /* Shop tabs */
    .shop-tabs {
        gap: 0.4rem;
    }

    .shop-tab {
        padding: 0.5rem 0.9rem;
        font-size: 0.85rem;
    }

    /* Product cards */
    .products-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
}

/* ========================================
   LESEPROBE SECTION
   ======================================== */

.leseprobe-section {
    background: linear-gradient(135deg, #fdf0f0 0%, #f9e4e4 100%);
    border-top: 2px solid #e1bead;
    border-bottom: 2px solid #e1bead;
    padding: 2.5rem 2rem;
}

.leseprobe-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.leseprobe-text {
    flex: 1;
}

.leseprobe-title {
    font-size: 1.6rem;
    color: #e09898;
    margin-bottom: 0.5rem;
}

.leseprobe-text p {
    color: #5a4a4a;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.btn--leseprobe {
    background: #e09898;
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.1s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn--leseprobe:hover {
    background: #d08080;
    transform: translateY(-2px);
    color: #fff;
}

/* ========================================
   PDF MODAL
   ======================================== */

.pdf-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.pdf-modal-overlay.open {
    display: flex;
}

.pdf-modal-box {
    background: white;
    border-radius: var(--border-radius-lg);
    width: 92vw;
    max-width: 1100px;
    height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.pdf-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #f3ede2 0%, #d3a4a4 100%);
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.pdf-modal-title-text {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.pdf-modal-close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark-color);
    line-height: 1;
    padding: 0 0.25rem;
    transition: color var(--transition-fast);
}

.pdf-modal-close-btn:hover {
    color: #e09898;
}

.pdf-canvas-container {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    background: #e8e8e8;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    gap: 1rem;
}

.pdf-page-canvas {
    display: block;
    max-width: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    background: white;
}

.pdf-loading, .pdf-error {
    margin: auto;
    color: #5a4a4a;
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 2rem;
}

/* ========================================
   SHOP TABS & CATEGORIES
   ======================================== */

.shop-tabs-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 2rem;
}

.shop-tabs {
    display: flex;
    gap: 0.5rem;
    min-width: max-content;
    padding-bottom: 0.25rem;
}

.shop-tab {
    background: white;
    border: 2px solid #e09898;
    color: #e09898;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.shop-tab:hover,
.shop-tab.active {
    background: #e09898;
    color: white;
}

.shop-category {
    display: none;
}

.shop-category.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ========================================
   PRODUCT CARD GRID (new)
   ======================================== */

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.product-card-new {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border-color);
}

.product-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #faf6f6;
    padding: 1rem;
}

.product-card-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #fdf0f0 0%, #f9e4e4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    justify-content: space-between;
}

.product-card-body h3 {
    font-size: 1rem;
    color: var(--dark-color);
    margin: 0;
}

.product-btn-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ========================================
   BLOG CARD GRID
   ======================================== */

.blog-grid-wrapper {
    padding: 2rem 0 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-image-wrap {
    position: relative;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card-date-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(224, 152, 152, 0.92);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a4a4a;
    margin: 0;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    margin: 0;
}

.blog-read-btn {
    margin-top: auto;
    align-self: flex-start;
}

/* ========================================
   RESPONSIVE: SMALL MOBILE (max-width: 480px)
   ======================================== */

@media (max-width: 480px) {
    :root {
        --font-size-base: 15px;
        --font-size-xl: 20px;
        --font-size-xxl: 24px;
        --spacing-lg: 1rem;
        --spacing-md: 1rem;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    .nav-container {
        padding: 0 var(--spacing-md);
    }

    .hero-image {
        width: 70% !important;
        display: none;
    }

    .hero-image2 {
        width: 70% !important;
        display: flex !important;
        justify-content: center;
    }

    .logoSchriftzug {
        max-height: 34px !important;
        width: auto !important;
    }

    .logoHeader {
        display: none;
    }

    .cta-button {
        padding: var(--spacing-md);
        font-size: var(--font-size-base);
    }

    .product-details {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .add-to-cart {
        width: 100%;
    }

    .product-image {
        max-width: 250px;
    }
}

/* ========================================
   PRODUCT DESCRIPTION TEXT
   ======================================== */

.product-desc {
    font-size: 0.85rem;
    color: #7a6a6a;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   READER PAGE (Leseprobe & Blog-Artikel)
   ======================================== */

.reader-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reader-back-btn {
    align-self: flex-start;
    background: none;
    border: 2px solid #e09898;
    color: #e09898;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.reader-back-btn:hover {
    background: #e09898;
    color: white;
}

.reader-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.reader-img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

.reader-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(90,74,74,0.35) 0%, transparent 60%);
    pointer-events: none;
}

.reader-meta {
    margin-bottom: 1.5rem;
}

.reader-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a4a4a;
    margin: 0 0 0.4rem;
}

.reader-date {
    font-size: 0.85rem;
    color: #a08080;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.reader-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #4a4a4a;
}

.reader-article p {
    margin: 0 0 1.2rem;
}

.reader-article-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c87878;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.reader-transition {
    font-style: italic;
    font-weight: 600;
    color: #9a7070;
    margin: 1.5rem 0 !important;
}

.reader-continue {
    margin-top: 2rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid #f0dede;
}

.reader-inline-link {
    background: none;
    border: none;
    color: #e09898;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
    padding: 0;
}

.reader-inline-link:hover {
    color: #c87878;
}

.reader-triggerwarnung {
    background: #fff8f0;
    border-left: 4px solid #e8b4b4;
    padding: 0.75rem 1rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: #8a6060;
    margin-bottom: 2rem;
}

.reader-inspiration {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(90,74,74,0.08);
    margin-bottom: 2.5rem;
    text-align: center;
}

.reader-inspiration h2 {
    color: #c87878;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.reader-inspiration p {
    color: #6a5a5a;
    line-height: 1.8;
}

.reader-affirmations {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
}

.reader-affirmations li {
    padding: 0.4rem 0;
    color: #7a6060;
    font-style: italic;
    border-bottom: 1px solid #f5eded;
}

.reader-affirmations li:last-child {
    border-bottom: none;
}

.reader-week-header {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c87878;
    margin: 2rem 0 1.5rem;
    position: relative;
}

.reader-week-header::before,
.reader-week-header::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #e8c8c8;
}

.reader-week-header::before { left: 0; }
.reader-week-header::after  { right: 0; }

.reader-poem {
    background: linear-gradient(135deg, #fdf5f5 0%, #fef9f9 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    font-style: italic;
    color: #6a5050;
    line-height: 2;
}

.reader-poem h3 {
    font-size: 1.2rem;
    color: #c87878;
    margin-bottom: 1.2rem;
    font-style: normal;
}

.reader-poem p {
    margin: 0 0 0.6rem;
}

@media (max-width: 600px) {
    .reader-title {
        font-size: 1.4rem;
    }

    .reader-img {
        max-height: 220px;
    }

    .reader-body {
        font-size: 1rem;
    }
}

/* ========================================
   BUCHSEITEN-LAYOUT (Leseprobe)
   ======================================== */

.leseprobe-page-wrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1.5rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.leseprobe-page-intro {
    text-align: center;
    color: #8a7070;
    font-size: 0.95rem;
    margin: 0;
}

.leseprobe-page-wrap .reader-back-btn {
    align-self: flex-start;
}

/* Buchseite */
.book-page {
    font-family: 'Lora', Georgia, serif;
    background: #fff;
    width: 100%;
    max-width: 480px;
    padding: 3rem 2.5rem 2.5rem;
    box-shadow:
        0 1px 3px rgba(90,74,74,0.08),
        0 8px 32px rgba(90,74,74,0.12),
        4px 4px 0 0 #f5eded;
    border-radius: 2px;
    position: relative;
    border-left: 4px solid #e8c4c4;
    text-align: center;
}

/* Dekoratives Ornament */
.book-page-ornament {
    color: #e09898;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.4em;
}

/* Abschnittsbezeichnung */
.book-page-label {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c87878;
    margin: 0 0 0.2rem;
}

/* Nummer */
.book-page-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #d4a5a5;
    line-height: 1;
    margin: 0 0 0.8rem;
}

/* Horizontale Linie */
.book-page-rule {
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e8c4c4, transparent);
    margin: 0 auto 1.4rem;
}

/* Einleitungstext */
.book-inspiration-intro {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.95rem;
    line-height: 1.85;
    color: #6a5555;
    margin: 0 0 1.2rem;
}

/* Affirmations-Liste */
.book-affirmations {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    width: 100%;
}

.book-affirmations li {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.92rem;
    font-style: italic;
    color: #7a5a5a;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f5e8e8;
    line-height: 1.5;
}

.book-affirmations li:last-child {
    border-bottom: none;
}

/* Schluss-Prompt */
.book-prompt {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.88rem;
    color: #9a7a7a;
    line-height: 1.7;
    margin: 0 0 1.4rem;
}

/* Schreibzeilen */
.book-writing-lines {
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.book-line {
    width: 100%;
    height: 1px;
    background: #e8d8d8;
    margin-bottom: 1.8rem;
}

/* Wochen-Badge */
.book-week-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.8rem;
}

.book-week-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c87878;
}

.book-week-num {
    font-family: 'Lora', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #e0b4b4;
    line-height: 1;
    margin-top: -0.1rem;
}

/* Foto + Datum Zeile */
.book-photo-row {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.book-photo-frame {
    width: 140px;
    height: 110px;
    border: 2px dashed #e0b4b4;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.book-photo-icon {
    font-size: 1.6rem;
    opacity: 0.45;
}

.book-photo-label {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8a0a0;
}

.book-date-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.3rem;
    gap: 0.4rem;
}

.book-date-label {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8a0a0;
}

.book-date-line {
    width: 100px;
    height: 1px;
    background: #e0c0c0;
}

/* Gedicht */
.book-poem {
    margin: 0.5rem 0;
}

.book-poem-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #b07070;
    margin: 0 0 1rem;
    letter-spacing: 0.05em;
}

.book-poem p {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9rem;
    font-style: italic;
    color: #6a5050;
    line-height: 1.9;
    margin: 0 0 0.8rem;
}

@media (max-width: 500px) {
    .book-page {
        padding: 2rem 1.5rem 2rem;
    }

    .book-week-num {
        font-size: 2.8rem;
    }

    .book-photo-frame {
        width: 110px;
        height: 88px;
    }
}
