.preorder-bonus-page {
    max-width: none;
    margin: 0;
    padding: 0;
}

.preorder-bonus-header {
    position: relative;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 72px 20px 56px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.preorder-bonus-header-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.preorder-bonus-header-media img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
}

.preorder-bonus-header-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.62) 100%
    );
}

.preorder-bonus-header-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.preorder-bonus-eyebrow {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 0.75rem;
    line-height: 1.5;
}

.preorder-bonus-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    color: #fff;
    margin: 0 auto 1rem;
    line-height: 1.15;
    font-weight: 700;
}

.preorder-bonus-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin: 0 auto 1rem;
}

.preorder-bonus-shop-link a {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.preorder-bonus-shop-link a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.preorder-bonus-recipes {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    text-align: center;
}

.preorder-bonus-recipes-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #104c80;
    margin: 0 0 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.preorder-bonus-recipes-subhead {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 1.75rem;
    line-height: 1.5;
}

.preorder-bonus-recipes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.preorder-bonus-recipe {
    margin: 0;
}

.preorder-bonus-recipe-media {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #eee;
}

.preorder-bonus-recipe-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preorder-bonus-recipe-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #333;
    margin: 0.85rem 0 0;
    font-weight: 500;
}

.preorder-bonus-form-section {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.preorder-bonus-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.preorder-bonus-form .form-group {
    margin-bottom: 28px;
}

.preorder-bonus-form label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preorder-bonus-form .required {
    color: #c62828;
    font-weight: 700;
}

.preorder-bonus-form input[type="text"],
.preorder-bonus-form input[type="email"],
.preorder-bonus-form select {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    border-radius: 0;
    appearance: none;
}

.preorder-bonus-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
    cursor: pointer;
}

.preorder-bonus-form input:focus,
.preorder-bonus-form select:focus {
    outline: none;
    border-bottom-color: #333;
}

.preorder-bonus-form input[type="file"] {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #555;
    padding: 8px 0;
}

.form-help {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
    margin: 8px 0 0;
}

.preorder-bonus-form .submit-btn {
    display: inline-block;
    background: #333;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    width: 100%;
}

.preorder-bonus-form .submit-btn:hover {
    background: #555;
}

.preorder-bonus-form .submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#bonus-form-message {
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    display: none;
}

#bonus-form-message.success {
    display: block;
    color: #2f6b3a;
}

#bonus-form-message.error {
    display: block;
    color: #b42318;
}

.preorder-bonus-success {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.preorder-bonus-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 0.75rem;
    font-weight: 500;
}

.preorder-bonus-success-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.preorder-bonus-download-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4169e1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.preorder-bonus-download-btn:hover {
    background-color: #2f52c4;
    color: #fff;
    text-decoration: none;
}

.preorder-bonus-support {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 1.5rem 0 0;
    text-align: center;
}

.preorder-bonus-support--always {
    margin-top: 1.25rem;
}

.preorder-bonus-support a {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 768px) {
    .preorder-bonus-header {
        padding: 48px 20px 40px;
        min-height: 320px;
    }

    .preorder-bonus-header-media img {
        object-position: center 40%;
    }

    .preorder-bonus-title {
        font-size: 2.6rem;
    }

    .preorder-bonus-intro {
        font-size: 1.05rem;
    }

    .preorder-bonus-recipes {
        padding: 28px 20px 60px;
    }

    .preorder-bonus-recipes-heading {
        font-size: 2rem;
    }

    .preorder-bonus-recipes-subhead {
        font-size: 1.05rem;
        margin-bottom: 1.25rem;
    }

    .preorder-bonus-recipes-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 420px;
        margin: 0 auto;
    }

    .preorder-bonus-recipe-title {
        font-size: 1.15rem;
    }

    .preorder-bonus-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .preorder-bonus-form-section {
        padding: 28px 20px 12px;
    }
}
