/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #8B0000;        /* Dark red - Una Sancta style */
    --accent-red: #DC143C;         /* Crimson accent */
    --text-dark: #1a1a1a;          /* Deep black */
    --text-medium: #4a4a4a;        /* Medium gray */
    --text-light: #6b7280;         /* Light gray */
    --background-white: #ffffff;    /* Pure white */
    --background-light: #fafafa;    /* Very light gray */
    --border-light: #e5e5e5;       /* Light border */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

.page-title {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger toggle - hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.nav-toggle:hover {
    color: var(--primary-red);
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url('/images/hero-bg-zw.jpg');
    background-size: cover;
    background-position: right top;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    margin-top: 0;
    padding-top: 80px; /* Account for fixed navbar height */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

/* Constrain the hero text block to the left */
.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-style: italic;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 600px;
}

.hero-attribution {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-attribution em {
    color: #ffcccb;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-primary {
    background-color: var(--primary-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-primary:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: white;
}

.cta-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-secondary:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Book Presentation Section */
.book-presentation {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.book-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.book-title {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.book-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.book-pitch {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.book-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-red);
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-red);
    background-color: var(--background-light);
}

.book-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.book-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.book-cover-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-cover-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px var(--shadow-medium);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.book-cover-image:hover {
    transform: rotate(0deg);
}

/* About Joan Section */
.about-joan {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text em {
    color: var(--primary-red);
    font-style: italic;
}

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

.author-photo {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 2px solid var(--border-light);
}

/* Publications Section */
.publications {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.publications-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.publication-item {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    display: block;
    text-decoration: none;
    color: inherit;
}

.publication-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-medium);
    text-decoration: none;
    color: inherit;
}

.publication-image {
    width: calc(100% + 4rem);
    height: 200px;
    margin: -2.5rem -2rem 1.5rem -2rem;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    display: block;
}

.publication-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.publication-item:hover .publication-img {
    transform: scale(1.05);
}

/* Author box styling */
.author-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.author-box p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.author-box strong {
    color: var(--text-dark);
    font-weight: 600;
}

.publication-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.publication-item p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.download-link {
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.download-link:hover {
    border-bottom-color: var(--primary-red);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: normal;
    color: var(--text-medium);
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-medium);
    font-size: 1.1rem;
    font-style: normal;
}

/* Media/Speaker Section */
.media-speaker {
    padding: 6rem 0;
    background-color: var(--background-white);
    display: none; /* Tijdelijk verborgen totdat sectie is afgerond */
}

.media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.media-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.media-info h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.media-info h3:not(:first-child) {
    margin-top: 2.5rem;
}

.media-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.media-item {
    background-color: var(--background-light);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-3px);
}

.media-item:nth-child(1) {
    grid-column: 1 / -1;
}

.media-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.media-item p {
    color: var(--text-medium);
    font-weight: 500;
    margin: 0;
}

/* Interviews List */
.interviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 2.5rem 0;
}

.interview-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.interview-link:hover {
    background-color: white;
    border-color: var(--primary-red);
    box-shadow: 0 3px 10px var(--shadow-light);
    transform: translateX(5px);
    text-decoration: none;
    color: inherit;
}

.interview-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.interview-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.interview-info strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.interview-info span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Lectures List */
.lectures-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 2.5rem 0;
}

.lecture-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background-color: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lecture-item:hover {
    background-color: white;
    border-color: var(--primary-red);
    box-shadow: 0 3px 10px var(--shadow-light);
}

.lecture-item.past {
    opacity: 0.5;
    background-color: #f5f5f5;
    border-color: #d0d0d0;
}

.lecture-item.past:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
    box-shadow: none;
    transform: none;
}

.lecture-date {
    min-width: 100px;
    font-weight: 600;
    color: var(--primary-red);
    font-size: 1rem;
    flex-shrink: 0;
}

.lecture-item.past .lecture-date {
    color: var(--text-light);
}

.lecture-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.lecture-details strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.lecture-item.past .lecture-details strong {
    color: var(--text-light);
}

.lecture-details span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.lecture-item.past .lecture-details span {
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.contact-title {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-red);
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    accent-color: var(--primary-red);
}

.submit-button {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Nieuwsbrief landing page */
.nieuwsbrief-hero {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2)), url('/images/hero-bg-zw.jpg');
    background-size: cover;
    background-position: right top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.nieuwsbrief-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.nieuwsbrief-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.nieuwsbrief-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nieuwsbrief-form-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.5rem;
}

.nieuwsbrief-form .form-group {
    margin-bottom: 1.25rem;
}

.nieuwsbrief-form .form-group:last-of-type {
    margin-bottom: 1rem;
}

.nieuwsbrief-message {
    display: none;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.nieuwsbrief-message--success {
    background: rgba(34, 197, 94, 0.15);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.nieuwsbrief-message--error {
    background: rgba(220, 38, 38, 0.1);
    color: #991b1b;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.nieuwsbrief-privacy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.nieuwsbrief-privacy a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.nieuwsbrief-privacy a:hover {
    color: white;
}

@media (max-width: 768px) {
    .nieuwsbrief-hero {
        padding: 6rem 0 4rem;
        min-height: auto;
        background-attachment: scroll;
        margin-top: 80px; /* Zelfde offset als hero op mobiel */
    }
    .nieuwsbrief-title {
        font-size: 2.25rem;
    }
    .nieuwsbrief-lead {
        font-size: 1.05rem;
    }
    .nieuwsbrief-form-card {
        padding: 1.75rem;
    }
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-left a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-left a:hover {
    color: white;
}

.footer-separator {
    color: #6b7280;
}

.footer-right {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-right a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 0.8;
}

.powered-by-logo {
    max-width: 80px;
    height: auto;
    vertical-align: middle;
    margin-left: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 0 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0 0;
        border-top: 1px solid var(--border-light);
        margin-top: 0.5rem;
    }

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

    .nav-menu .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 1rem;
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
        background-attachment: scroll;
        margin-top: 80px; /* Account for fixed navbar height on mobile too */
    }
    
    .hero-container {
        padding: 0 1rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-quote {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .book-content,
    .media-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .book-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .author-photo {
        width: 200px;
        height: 250px;
        margin: 0 auto;
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .book-cover-image {
        transform: none;
        max-width: 250px;
    }
    
    .media-placeholder {
        grid-template-columns: 1fr;
    }
    
    .media-item:nth-child(1) {
        grid-column: auto;
    }
    
    .interview-link {
        padding: 0.875rem 1.25rem;
    }
    
    .interview-icon {
        font-size: 1.25rem;
    }
    
    .lecture-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .lecture-date {
        min-width: auto;
        font-size: 0.95rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-left {
        justify-content: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-quote {
        font-size: 1.8rem;
    }
    
    .book-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-container,
    .book-container,
    .about-container,
    .publications-container,
    .testimonials-container,
    .media-container,
    .contact-container {
        padding: 0 1rem;
    }
    
    .about-card,
    .publication-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Book Landing Page Specific Styles */
.hero-book {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url('/images/vatican-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-book .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
}

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

.book-hero-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.book-hero-image:hover {
    transform: rotate(0deg);
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Book landing page specific quote styling */
.book-hero-quote {
    font-size: 1.8rem !important;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* Book landing page specific attribution styling */
.hero-book .hero-attribution {
    text-align: left;
    display: block;
}

.cta-tertiary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-tertiary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Book Details Section */
.book-details {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.book-description {
    margin-bottom: 2rem;
}

.book-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.book-features {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-red);
}

.book-features h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.book-features ul {
    list-style: none;
    padding: 0;
}

.book-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.book-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.book-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-cover-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Inkijkexemplaar Section */
.inkijkexemplaar {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.inkijkexemplaar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.inkijkexemplaar-content {
    display: flex;
    justify-content: center;
    align-items: start;
    max-width: 600px;
    margin: 0 auto;
}

.inkijkexemplaar-step {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-light);
    position: relative;
}

.inkijkexemplaar-step .step-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.3);
}

.inkijkexemplaar-step .step-content {
    margin-top: 0;
}

.inkijkexemplaar-step h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.inkijkexemplaar-step-1 h3 {
    font-size: 1.5rem;
}

.inkijkexemplaar-step-2 h3 {
    font-size: 1.3rem;
}

.inkijkexemplaar-step p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.inkijkexemplaar-step ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.inkijkexemplaar-step li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.inkijkexemplaar-step li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Arrow between steps - Desktop: points right */
.inkijkexemplaar-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 40px;
    border-color: transparent transparent transparent var(--primary-red);
    position: relative;
    flex-shrink: 0;
    margin: 0 1rem;
    align-self: start;
    margin-top: 2.5rem;
}

.bonus-form {
    margin-top: 2rem;
}

.bonus-form .form-group {
    margin-bottom: 1rem;
}

.bonus-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.bonus-form input:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Bestellen Section */
.bestellen {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.bestellen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bestellen-info h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bestellen-info p {
    margin-bottom: 2rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.book-formats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.format-option {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.format-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.format-option h4 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.format-option p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.format-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.format-option .cta-primary {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

/* Disabled format option styling */
.format-option.disabled {
    opacity: 0.6;
    background-color: #f5f5f5;
    cursor: not-allowed;
    position: relative;
}

.format-option.disabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    z-index: 1;
}

.format-option.disabled:hover {
    transform: none;
    box-shadow: none;
}

.format-option.disabled h4,
.format-option.disabled p,
.format-option.disabled .format-price {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.format-option.disabled .format-price {
    color: var(--text-medium);
}

.format-option.disabled .cta-primary.disabled {
    position: relative;
    z-index: 2;
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    pointer-events: none;
    border: none;
    box-shadow: none;
}

.format-option.disabled .cta-primary.disabled:hover {
    background-color: #cccccc;
    color: #666666;
    transform: none;
    box-shadow: none;
}

.retailers {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.retailer-link {
    background-color: var(--background-light);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.retailer-link:hover {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.book-specs {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.book-specs h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.book-specs ul {
    list-style: none;
    padding: 0;
}

.book-specs li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
}

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

.bestellen-book-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px var(--shadow-medium);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.bestellen-book-image:hover {
    transform: rotate(0deg);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial {
    background-color: white;
    padding: 2.5rem 2.5rem 2.25rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-light);
    border-left: 4px solid var(--primary-red);
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Testimonial with video (YouTube embed) */
.testimonial-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Vertical video (YouTube Shorts) */
.testimonial-video-wrapper--shorts {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 145%; /* minder hoog, voorkomt zwarte balken */
}

/* Bonus Section */
.bonus-section {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.bonus-section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bonus-section-content {
    text-align: center;
}

.bonus-intro {
    margin-bottom: 2.5rem;
}

.bonus-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0;
}

.bonus-access-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-light);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-access-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.bonus-access-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.bonus-access-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.bonus-access-form input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.bonus-info {
    text-align: left;
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.bonus-info h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.bonus-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.bonus-list li em {
    font-style: italic;
    color: var(--text-dark);
}

/* Responsive adjustments for book pages */
@media (max-width: 768px) {
    .hero-book .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-book .hero-text {
        text-align: center;
    }
    
    .hero-book .hero-attribution {
        text-align: center;
    }

    .hero-container {
        height: auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .inkijkexemplaar-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .inkijkexemplaar-step {
        padding: 2rem 1.5rem;
    }
    
    .bestellen-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .book-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .book-cta .cta-primary,
    .book-cta .cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .retailers {
        justify-content: center;
    }
    
    .book-hero-image,
    .bestellen-book-image {
        transform: none;
        max-width: 250px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Checkout Page Styles */
.checkout-section {
    padding: 8rem 0 4rem 0; /* Extra padding top voor fixed header */
    background-color: #f8f9fa;
    min-height: 100vh;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.checkout-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: left;
}

.checkout-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    grid-column: 1;
}

.checkout-sidebar {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.address-section {
    margin: 1rem 0 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e75204; /* PostNL orange */
}

.address-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #e75204; /* PostNL orange */
    margin-bottom: 1rem;
}

.postnl-logo {
    height: 32px;
    width: auto;
}

.address-help {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Customer Info Section */
.customer-info {
    margin: 1rem 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.customer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Removed readonly styling - fields are now editable for all countries */

.checkout-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.checkout-form input {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.order-summary {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e1e5e9;
}

.order-item:last-child {
    border-bottom: none;
}

.product-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-per-unit {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    margin-top: 0.2rem;
}

.quantity-selector {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-selector label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.quantity-selector select {
    padding: 0.3rem 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    background: white;
    min-width: 60px;
}

.order-bumps {
    margin: 2rem 0;
}

.order-bumps h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.order-bump {
    margin-bottom: 1rem;
}

.bump-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bump-label:hover {
    border-color: var(--primary-red);
    background-color: #fff5f5;
}

.bump-checkbox {
    margin-right: 1rem;
    transform: scale(1.2);
}

.bump-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.bump-name {
    font-weight: 600;
    color: #333;
}

.bump-price {
    font-weight: 700;
    color: var(--primary-red);
}

.order-total {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #e1e5e9;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.checkout-button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.checkout-button:hover {
    background: #c41e3a;
}

.checkout-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.checkout-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.payment-method {
    background: white;
    padding: 0.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 40px;
}

.payment-logo {
    max-height: 24px;
    max-width: 50px;
    object-fit: contain;
}

.security-info,
.delivery-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.security-info h3,
.delivery-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.security-info p,
.delivery-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.delivery-info p strong {
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-sidebar {
        grid-column: 1;
        order: 2;
    }
    
    .checkout-form-container {
        padding: 2rem 1.5rem;
    }
    
    .checkout-title {
        font-size: 2rem;
    }
    
    .order-summary {
        padding: 1.5rem;
    }
    
    .bump-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bump-price {
        align-self: flex-end;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .address-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .customer-info {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .address-header {
        font-size: 1.1rem;
    }
    
    .postnl-logo {
        height: 24px;
    }
    
    .order-summary,
    .customer-info,
    .address-section {
        margin: 1rem 0;
    }
    
    .payment-methods {
        gap: 0.5rem;
    }
    
    .payment-method {
        min-width: 50px;
        height: 35px;
    }
    
    .payment-logo {
        max-height: 20px;
        max-width: 45px;
    }
}

/* Floating Order Bar */
.floating-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem 2rem; /* Increased height */
    display: none; /* Initially hidden */
}

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

.floating-order-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-order-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-order-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.floating-checkout-button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.floating-checkout-button:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.floating-checkout-button:active {
    transform: translateY(0);
}

.lock-icon {
    flex-shrink: 0;
}

/* Show floating bar on all screens */
.floating-order-bar {
    display: block;
}

/* Add bottom padding to prevent content from being hidden behind floating bar */
.checkout-section {
    padding-bottom: 6rem;
}

/* Mobile floating bar styling */
@media (max-width: 768px) {
    .floating-order-bar {
        padding: 1rem;
    }
    
    .floating-order-content {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .floating-order-info {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .floating-checkout-button {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .floating-order-price {
        font-size: 1.25rem;
    }
    
    /* Reduce bottom padding on mobile */
    .checkout-section {
        padding-bottom: 5rem;
    }
}

/* Checkout page specific header styling */
body.checkout-page .nav-menu {
    display: none;
}

body.checkout-page .nav-container {
    justify-content: center;
}

body.checkout-page .nav-logo {
    margin: 0;
}

.free-shipping {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.checkout-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.checkout-title-section {
    flex: 1;
    max-width: 70%;
}

/* Equal options mode styling */
.products-selection {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.product-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e1e5e9;
    transition: all 0.3s ease;
}

.product-option:hover {
    border-color: var(--primary-red);
    background: #fff5f5;
}

.product-option-info {
    flex: 1;
}

.product-option-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-option-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.product-option-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    min-width: 150px;
    text-align: right;
}

.product-select-checkbox {
    margin-top: 0.5rem;
}

.product-select-checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--primary-red);
    gap: 0.5rem;
}

.product-select-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    transform: scale(1.2);
    accent-color: var(--primary-red);
}

@media (max-width: 768px) {
    .product-option {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .product-option-price {
        align-items: flex-start;
        margin-top: 1rem;
        min-width: auto;
        text-align: left;
    }
}


.book-review {
    position: relative;
    max-width: 500px;
    margin-top: 1rem;
}

.review-quote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0.5rem;
}

.review-author {
    font-weight: 600;
    color: #8B0000;
    font-size: 0.9rem;
}

.checkout-book-cover {
    position: relative;
    flex-shrink: 0;
    margin-left: 2rem;
}

.checkout-book-cover .book-cover-image {
    width: 120px;
    height: auto;
    transform: rotate(2deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 4px;
}

/* Press Release Section */
.press-release {
    padding: 8rem 0 6rem;
    background-color: var(--background-white);
}

.press-release-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.press-release-content {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.press-release-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
}

.press-release-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.press-release-date {
    color: var(--text-medium);
    font-size: 1rem;
    margin: 0;
}

.press-release-body {
    line-height: 1.8;
}

.press-release-headline {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.press-release-headline em {
    font-style: italic;
    color: var(--primary-red);
}

.press-release-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.press-release-intro em {
    font-style: italic;
}

.press-release-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 3rem 0;
}

.press-release-cover {
    text-align: center;
    margin-bottom: 2.5rem;
}

.press-release-cover-image {
    width: 280px;
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.press-release-cover-caption {
    font-size: 0.95rem;
    color: var(--text-light);
}

.press-release-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.press-release-body p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.press-release-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-red);
    border-radius: 4px;
}

.press-release-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-medium);
    font-family: 'Inter', sans-serif;
}

.press-release-book-details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.press-release-book-details li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-medium);
    line-height: 1.6;
}

.press-release-book-details li:last-child {
    border-bottom: none;
}

.press-release-book-details strong {
    color: var(--text-dark);
    font-weight: 600;
    min-width: 150px;
    display: inline-block;
}

.press-release-book-details a {
    color: var(--primary-red);
    text-decoration: underline;
}

.press-release-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.press-release-end {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.press-release-note {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-red);
}

.press-release-note h4 {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.press-release-note p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.press-release-note p:last-child {
    margin-bottom: 0;
}

.press-release-note em {
    font-style: italic;
    color: var(--text-dark);
}

.press-release-note a {
    color: var(--primary-red);
    text-decoration: underline;
}

.press-release-link {
    margin-bottom: 1.5rem;
}

.press-release-link .social-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-red);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.press-release-link .social-link:hover {
    background-color: var(--accent-red);
    color: white;
}

@media (max-width: 768px) {
    .press-release {
        padding: 10rem 0 4rem;
    }
    
    .press-release-content {
        padding: 2rem 1.5rem;
    }
    
    .press-release-title {
        font-size: 1.5rem;
    }
    
    .press-release-headline {
        font-size: 1.4rem;
    }
    
    .press-release-section-title {
        font-size: 1.2rem;
    }
    
    .press-release-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .press-release-cover-image {
        width: 220px;
    }
    
    .press-release-book-details strong {
        display: block;
        margin-bottom: 0.25rem;
    }
}
