/*
Theme Name: LeAndra Prints
Theme URI: https://leandraprints.com/
Author: SitePlot Media
Author URI: https://siteplotmedia.com/
Description: An editorial, boutique-publisher WordPress theme for LeAndra Prints — a small publishing company specializing in children's books, coloring books, prayer journals, and travel guides. Features a custom Books post type, full Customizer support for every page section, an editable cookie notice, and elegant editorial typography (DM Serif Display + Cormorant Garamond + Manrope). No page builders required — every detail is editable from the WordPress Customizer and the Books admin screen.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leandra-prints
Tags: publishing, books, editorial, elegant, custom-post-type, custom-colors, custom-menu, theme-options, threaded-comments, translation-ready
*/

/* =============================================================
   LeAndra Prints — Editorial Publisher Theme
   Palette: off-white, deep navy, muted gold
   Type:    DM Serif Display / Cormorant Garamond / Manrope
   ============================================================= */

:root {
    --lp-bg:           #FAF7F2;
    --lp-bg-alt:       #F2EEE6;
    --lp-bg-deep:      #1A2B4A;
    --lp-text:         #1A2B4A;
    --lp-text-soft:    #2A3654;
    --lp-text-muted:   #5C6580;
    --lp-accent:       #B8965A;
    --lp-accent-dark:  #8F6F3D;
    --lp-accent-soft:  #E8D8B8;
    --lp-border:       #E8E2D6;
    --lp-border-dark:  #D4CCB8;
    --lp-white:        #FFFFFF;

    --lp-font-display: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
    --lp-font-serif:   'Cormorant Garamond', 'EB Garamond', Georgia, serif;
    --lp-font-sans:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --lp-radius:       2px;
    --lp-radius-card:  4px;
    --lp-shadow-card:  0 2px 24px rgba(26,43,74,0.06);
    --lp-shadow-hover: 0 12px 40px rgba(26,43,74,0.12);
    --lp-shadow-deep:  0 18px 60px rgba(26,43,74,0.18);

    --lp-trans:        all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--lp-font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--lp-text);
    background: var(--lp-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lp-accent-dark); text-decoration: none; transition: var(--lp-trans); }
a:hover { color: var(--lp-bg-deep); }
p { margin: 0 0 1.2em; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--lp-font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--lp-bg-deep);
    margin: 0 0 0.6em;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.25rem; }

.lp-eyebrow {
    display: inline-block;
    font-family: var(--lp-font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lp-accent-dark);
    margin-bottom: 1.2rem;
}

.lp-serif {
    font-family: var(--lp-font-serif);
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--lp-text-soft);
}

/* Layout */
.lp-container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.lp-container--narrow { max-width: 820px; }
.lp-section { padding: clamp(60px, 9vw, 120px) 0; }
.lp-section--alt { background: var(--lp-bg-alt); }
.lp-section--deep { background: var(--lp-bg-deep); color: var(--lp-bg); }
.lp-section--deep h1,
.lp-section--deep h2,
.lp-section--deep h3 { color: var(--lp-bg); }
.lp-section--deep .lp-eyebrow { color: var(--lp-accent-soft); }

.lp-divider {
    width: 60px; height: 1px;
    background: var(--lp-accent);
    margin: 1.4rem 0 1.6rem;
    border: none;
}
.lp-divider--center { margin-left: auto; margin-right: auto; }

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lp-font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 1px solid var(--lp-bg-deep);
    background: var(--lp-bg-deep);
    color: var(--lp-bg);
    border-radius: var(--lp-radius);
    cursor: pointer;
    transition: var(--lp-trans);
    text-decoration: none;
}
.lp-btn:hover {
    background: var(--lp-accent-dark);
    border-color: var(--lp-accent-dark);
    color: var(--lp-bg);
    transform: translateY(-1px);
    box-shadow: var(--lp-shadow-card);
}
.lp-btn--ghost {
    background: transparent;
    color: var(--lp-bg-deep);
}
.lp-btn--ghost:hover {
    background: var(--lp-bg-deep);
    color: var(--lp-bg);
}
.lp-btn--gold {
    background: var(--lp-accent-dark);
    border-color: var(--lp-accent-dark);
}
.lp-btn--gold:hover {
    background: var(--lp-bg-deep);
    border-color: var(--lp-bg-deep);
}
.lp-btn--sm { padding: 11px 22px; font-size: 0.74rem; }

/* Header */
.lp-site-header {
    background: var(--lp-bg);
    border-bottom: 1px solid var(--lp-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--lp-trans);
}
.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    gap: 32px;
}
.lp-logo .lp-logo-mark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    line-height: 1;
}
.lp-logo-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--lp-bg-deep);
    color: var(--lp-accent-soft);
    font-family: var(--lp-font-display);
    font-size: 1.42rem;
    letter-spacing: -0.02em;
    line-height: 1;
    border: 1px solid var(--lp-bg-deep);
    position: relative;
    transition: var(--lp-trans);
}
.lp-logo-monogram::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--lp-accent);
    pointer-events: none;
    transition: var(--lp-trans);
}
.lp-logo-wordmark {
    font-family: var(--lp-font-display);
    font-size: 1.35rem;
    line-height: 1;
    color: var(--lp-bg-deep);
    letter-spacing: 0.01em;
    transition: var(--lp-trans);
}
.lp-logo .lp-logo-mark:hover .lp-logo-monogram {
    background: var(--lp-accent-dark);
    border-color: var(--lp-accent-dark);
    color: var(--lp-bg);
}
.lp-logo .lp-logo-mark:hover .lp-logo-monogram::after {
    border-color: var(--lp-accent-soft);
}
.lp-logo .lp-logo-mark:hover .lp-logo-wordmark { color: var(--lp-accent-dark); }
@media (max-width: 480px) {
    .lp-logo-monogram { width: 40px; height: 40px; font-size: 1.2rem; }
    .lp-logo-wordmark { font-size: 1.15rem; }
}
.lp-nav { display: flex; align-items: center; }
.lp-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 38px;
    align-items: center;
}
.lp-nav a {
    font-family: var(--lp-font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lp-text);
    padding: 4px 0;
    position: relative;
}
.lp-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--lp-accent);
    transition: width 0.32s;
}
.lp-nav a:hover::after,
.lp-nav .current-menu-item a::after { width: 100%; }
.lp-nav a:hover { color: var(--lp-bg-deep); }

.lp-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--lp-border-dark);
    padding: 10px 12px;
    cursor: pointer;
    color: var(--lp-bg-deep);
    font-family: var(--lp-font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Hero */
.lp-hero {
    position: relative;
    padding: clamp(70px, 12vw, 160px) 0;
    background: var(--lp-bg);
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: 0; right: -200px; bottom: 0;
    width: 60%;
    background:
        radial-gradient(circle at 30% 30%, rgba(184,150,90,0.06) 0%, transparent 70%),
        linear-gradient(135deg, rgba(26,43,74,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.lp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}
.lp-hero h1 {
    margin-bottom: 1.6rem;
}
.lp-hero h1 em {
    font-family: var(--lp-font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--lp-accent-dark);
}
.lp-hero-lede {
    font-family: var(--lp-font-serif);
    font-size: clamp(1.18rem, 1.6vw, 1.42rem);
    line-height: 1.55;
    color: var(--lp-text-soft);
    margin-bottom: 2.4rem;
    max-width: 620px;
}
.lp-hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* Featured marquee strip */
.lp-strip {
    background: var(--lp-bg-deep);
    color: var(--lp-bg);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid rgba(184,150,90,0.2);
    border-bottom: 1px solid rgba(184,150,90,0.2);
}
.lp-strip-track {
    display: flex;
    gap: 60px;
    align-items: center;
    font-family: var(--lp-font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--lp-accent-soft);
    white-space: nowrap;
    animation: lp-marquee 38s linear infinite;
}
.lp-strip-track span { display: inline-flex; align-items: center; gap: 60px; }
.lp-strip-track .lp-dot {
    width: 6px; height: 6px;
    background: var(--lp-accent);
    border-radius: 50%;
    display: inline-block;
}
@keyframes lp-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Section heading composition */
.lp-section-head {
    margin-bottom: 64px;
    max-width: 720px;
}
.lp-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.lp-section-head p {
    font-family: var(--lp-font-serif);
    font-size: 1.18rem;
    color: var(--lp-text-soft);
    margin-top: 0.4em;
}

/* Books grid */
.lp-books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 56px 40px;
}
.lp-book-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.lp-book-cover-wrap {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--lp-bg-alt);
    margin-bottom: 22px;
    box-shadow: var(--lp-shadow-card);
    transition: var(--lp-trans);
}
.lp-book-card:hover .lp-book-cover-wrap {
    box-shadow: var(--lp-shadow-hover);
    transform: translateY(-4px);
}
.lp-book-cover-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lp-book-card:hover .lp-book-cover-wrap img {
    transform: scale(1.04);
}
.lp-book-cover-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 28px;
    background: linear-gradient(155deg, var(--lp-bg-deep) 0%, #2A3D5E 100%);
    color: var(--lp-accent-soft);
    text-align: center;
}
.lp-book-cover-placeholder .lp-eyebrow {
    color: var(--lp-accent);
    font-size: 0.62rem;
    margin-bottom: 14px;
}
.lp-book-cover-placeholder .lp-cover-title {
    font-family: var(--lp-font-display);
    font-size: 1.2rem;
    color: var(--lp-bg);
    line-height: 1.25;
}
.lp-book-category {
    font-family: var(--lp-font-sans);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--lp-accent-dark);
    margin-bottom: 10px;
}
.lp-book-title {
    font-family: var(--lp-font-display);
    font-size: 1.32rem;
    line-height: 1.25;
    color: var(--lp-bg-deep);
    margin-bottom: 8px;
}
.lp-book-card:hover .lp-book-title { color: var(--lp-accent-dark); }
.lp-book-subtitle {
    font-family: var(--lp-font-serif);
    font-style: italic;
    color: var(--lp-text-muted);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 14px;
}
.lp-book-link {
    font-family: var(--lp-font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lp-accent-dark);
    margin-top: auto;
    padding-top: 6px;
}
.lp-book-link::after {
    content: ' →';
    transition: transform 0.32s;
    display: inline-block;
}
.lp-book-card:hover .lp-book-link::after { transform: translateX(4px); }

/* Categories tabs */
.lp-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 28px;
    justify-content: center;
    margin-bottom: 56px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
}
.lp-cat-tab {
    background: none;
    border: none;
    padding: 8px 4px;
    font-family: var(--lp-font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
    cursor: pointer;
    transition: var(--lp-trans);
    border-bottom: 1px solid transparent;
}
.lp-cat-tab:hover { color: var(--lp-bg-deep); }
.lp-cat-tab.is-active {
    color: var(--lp-bg-deep);
    border-bottom-color: var(--lp-accent);
}

/* About author block */
.lp-author {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}
.lp-author-image {
    aspect-ratio: 4 / 5;
    background: var(--lp-bg-alt);
    box-shadow: var(--lp-shadow-card);
    position: relative;
    overflow: hidden;
}
.lp-author-image::after {
    content: '';
    position: absolute;
    top: 20px; left: 20px; right: -20px; bottom: -20px;
    border: 1px solid var(--lp-accent);
    z-index: -1;
}
.lp-author-image img { width: 100%; height: 100%; object-fit: cover; }
.lp-author-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--lp-font-display);
    font-size: 3.4rem;
    color: var(--lp-accent-dark);
    background: linear-gradient(135deg, var(--lp-bg-alt) 0%, var(--lp-accent-soft) 100%);
}
.lp-author-content blockquote {
    font-family: var(--lp-font-serif);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.55;
    color: var(--lp-text-soft);
    margin: 0 0 28px;
    padding-left: 24px;
    border-left: 2px solid var(--lp-accent);
}

/* Single book page */
.lp-single-book {
    padding: clamp(50px, 7vw, 90px) 0;
}
.lp-single-book__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: start;
}
.lp-single-book__cover {
    aspect-ratio: 2 / 3;
    background: var(--lp-bg-alt);
    box-shadow: var(--lp-shadow-deep);
    overflow: hidden;
    position: sticky;
    top: 110px;
}
.lp-single-book__cover img { width: 100%; height: 100%; object-fit: cover; }
.lp-single-book__meta {
    font-family: var(--lp-font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lp-accent-dark);
    margin-bottom: 18px;
}
.lp-single-book__title { margin-bottom: 18px; }
.lp-single-book__subtitle {
    font-family: var(--lp-font-serif);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--lp-text-soft);
    margin-bottom: 32px;
}
.lp-single-book__desc {
    font-family: var(--lp-font-serif);
    font-size: 1.22rem;
    line-height: 1.65;
    color: var(--lp-text-soft);
    margin-bottom: 40px;
}
.lp-single-book__desc p { margin-bottom: 1.1em; }
.lp-single-book__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.lp-single-book__back {
    font-family: var(--lp-font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
    margin-bottom: 24px;
    display: inline-block;
}

/* Pages */
.lp-page-hero {
    padding: clamp(70px, 9vw, 130px) 0 clamp(40px, 5vw, 60px);
    text-align: center;
    background: var(--lp-bg);
    border-bottom: 1px solid var(--lp-border);
}
.lp-page-hero h1 { margin-bottom: 12px; }
.lp-page-hero p {
    font-family: var(--lp-font-serif);
    font-size: 1.2rem;
    color: var(--lp-text-muted);
    max-width: 620px;
    margin: 0 auto;
}
.lp-page-content {
    padding: clamp(60px, 8vw, 100px) 0;
}
.lp-prose {
    max-width: 740px;
    margin: 0 auto;
    font-family: var(--lp-font-serif);
    font-size: 1.18rem;
    line-height: 1.75;
    color: var(--lp-text-soft);
}
.lp-prose h2, .lp-prose h3 { font-family: var(--lp-font-display); margin-top: 2em; }
.lp-prose ul, .lp-prose ol { padding-left: 1.4em; }
.lp-prose li { margin-bottom: 0.5em; }
.lp-prose strong { color: var(--lp-bg-deep); font-weight: 600; }
.lp-prose a { color: var(--lp-accent-dark); border-bottom: 1px solid var(--lp-accent-soft); }
.lp-prose a:hover { color: var(--lp-bg-deep); border-color: var(--lp-bg-deep); }

/* Contact form */
.lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}
.lp-contact-info p { font-family: var(--lp-font-serif); font-size: 1.1rem; }
.lp-contact-detail {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--lp-border);
}
.lp-contact-detail strong {
    display: block;
    font-family: var(--lp-font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lp-accent-dark);
    margin-bottom: 6px;
}
.lp-form label {
    display: block;
    font-family: var(--lp-font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lp-text);
    margin-bottom: 8px;
}
.lp-form input[type="text"],
.lp-form input[type="email"],
.lp-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--lp-border-dark);
    background: var(--lp-bg);
    font-family: var(--lp-font-sans);
    font-size: 1rem;
    color: var(--lp-text);
    border-radius: var(--lp-radius);
    margin-bottom: 24px;
    transition: var(--lp-trans);
}
.lp-form input:focus,
.lp-form textarea:focus {
    outline: none;
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 3px rgba(184,150,90,0.12);
}
.lp-form textarea { resize: vertical; min-height: 160px; }
.lp-form-msg {
    padding: 14px 18px;
    margin-bottom: 20px;
    font-family: var(--lp-font-sans);
    font-size: 0.92rem;
    border-radius: var(--lp-radius);
}
.lp-form-msg--ok { background: #E8F0E5; color: #3D5A2E; border: 1px solid #C5D8BD; }
.lp-form-msg--err { background: #F5E3DF; color: #8B3A2A; border: 1px solid #E0BAB0; }

/* Footer */
.lp-site-footer {
    background: var(--lp-bg-deep);
    color: var(--lp-accent-soft);
    padding: 80px 0 32px;
    margin-top: 60px;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.lp-site-footer h4 {
    color: var(--lp-bg);
    font-family: var(--lp-font-sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.lp-site-footer .lp-footer-brand {
    font-family: var(--lp-font-display);
    font-size: 1.6rem;
    color: var(--lp-bg);
    margin-bottom: 16px;
}
.lp-site-footer p {
    font-family: var(--lp-font-serif);
    font-size: 1rem;
    color: rgba(232,216,184,0.72);
    line-height: 1.6;
}
.lp-footer-links { list-style: none; padding: 0; margin: 0; }
.lp-footer-links li { margin-bottom: 12px; }
.lp-footer-links a {
    font-family: var(--lp-font-sans);
    font-size: 0.9rem;
    color: var(--lp-accent-soft);
    transition: var(--lp-trans);
}
.lp-footer-links a:hover { color: var(--lp-accent); padding-left: 4px; }
.lp-footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(184,150,90,0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.84rem;
    color: rgba(232,216,184,0.6);
}
.lp-footer-bottom a { color: rgba(232,216,184,0.85); }

/* Cookie notice */
.lp-cookie-notice {
    position: fixed;
    bottom: 24px; left: 24px; right: 24px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--lp-bg-deep);
    color: var(--lp-bg);
    padding: 24px 28px;
    box-shadow: var(--lp-shadow-deep);
    border: 1px solid rgba(184,150,90,0.25);
    border-radius: var(--lp-radius-card);
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lp-cookie-notice.is-visible { transform: translateY(0); }
.lp-cookie-notice__text {
    flex: 1 1 320px;
    font-family: var(--lp-font-serif);
    font-size: 1.02rem;
    line-height: 1.5;
    color: rgba(250,247,242,0.92);
    margin: 0;
}
.lp-cookie-notice__text a {
    color: var(--lp-accent);
    border-bottom: 1px solid var(--lp-accent-dark);
}
.lp-cookie-notice__actions { display: flex; gap: 12px; }
.lp-cookie-btn {
    font-family: var(--lp-font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 11px 20px;
    background: var(--lp-accent-dark);
    color: var(--lp-bg);
    border: 1px solid var(--lp-accent-dark);
    border-radius: var(--lp-radius);
    cursor: pointer;
    transition: var(--lp-trans);
}
.lp-cookie-btn:hover { background: var(--lp-accent); border-color: var(--lp-accent); }
.lp-cookie-btn--ghost {
    background: transparent;
    color: var(--lp-accent-soft);
    border-color: rgba(232,216,184,0.4);
}
.lp-cookie-btn--ghost:hover {
    background: transparent;
    color: var(--lp-bg);
    border-color: var(--lp-accent-soft);
}

/* Floating cookie reopen button */
.lp-cookie-reopen {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 44px; height: 44px;
    background: var(--lp-bg-deep);
    color: var(--lp-accent-soft);
    border: 1px solid rgba(184,150,90,0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lp-shadow-card);
    transition: var(--lp-trans);
}
.lp-cookie-reopen.is-visible { display: flex; }
.lp-cookie-reopen:hover {
    background: var(--lp-accent-dark);
    color: var(--lp-bg);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .lp-author, .lp-single-book__grid, .lp-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lp-single-book__cover { position: static; max-width: 360px; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .lp-menu-toggle { display: inline-block; }
    .lp-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--lp-bg);
        border-bottom: 1px solid var(--lp-border);
        display: none;
        padding: 24px 32px 32px;
    }
    .lp-nav.is-open { display: block; }
    .lp-nav ul { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 560px) {
    .lp-container { padding: 0 22px; }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-books-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 40px 24px; }
    .lp-cookie-notice {
        bottom: 12px; left: 12px; right: 12px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
    }
    .lp-cookie-notice__actions { justify-content: flex-end; }
}

/* WordPress core utility classes */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-family: var(--lp-font-serif); font-style: italic; font-size: 0.92rem; color: var(--lp-text-muted); text-align: center; padding: 8px 0; }
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px,1px,1px,1px);
    width: 1px; height: 1px; overflow: hidden;
}
.sticky, .gallery-caption, .bypostauthor { /* WP required */ }
