/* ===========================================
   LOLA MAROIS ÉDITIONS - Styles Communs
   =========================================== */

:root {
    --fuchsia: #7f1734;
    --fuchsia-clair: #f5e6ea;
    --blanc-chaud: #FFFAF7;
    --gris-doux: #3d2e30;
    --or-doux: #B8860B;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--blanc-chaud);
    color: var(--gris-doux);
    line-height: 1.8;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255,250,247,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(127, 23, 52, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gris-doux);
    text-decoration: none;
}

.logo span {
    color: var(--fuchsia);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--gris-doux);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--fuchsia);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-actions a {
    color: var(--gris-doux);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-actions a:hover {
    color: var(--fuchsia);
}

.nav-actions .cart {
    position: relative;
}

.nav-actions .cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--fuchsia);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Menu mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--gris-doux);
}

/* ========== BOUTONS ========== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--fuchsia);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #5a1025;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--fuchsia);
    color: var(--fuchsia);
}

.btn-outline:hover {
    background: var(--fuchsia);
    color: #fff;
}

.btn-small {
    padding: 10px 25px;
    font-size: 11px;
}

.btn-white {
    background: #fff;
    color: var(--fuchsia);
}

.btn-white:hover {
    background: var(--fuchsia-clair);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 60px 60px;
    background: var(--blanc-chaud);
}

.hero-text {
    padding-right: 60px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--gris-doux);
}

.hero-text h1 span {
    color: var(--fuchsia);
    font-style: italic;
}

.hero-text .tagline {
    font-size: 14px;
    color: var(--or-doux);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-text .manifeste-quote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--fuchsia);
    margin-bottom: 30px;
}

.hero-text p {
    font-size: 15px;
    color: var(--gris-doux);
    margin-bottom: 30px;
}

.hero-image {
    height: 100%;
    min-height: 500px;
    position: relative;
}

.hero-image .image-placeholder,
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--fuchsia-clair) 0%, #f5e6ea 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--fuchsia);
    flex-direction: column;
    gap: 10px;
}

.image-placeholder span {
    font-size: 12px;
    color: var(--gris-doux);
    opacity: 0.6;
}

/* ========== PAGE HEADER (pour pages internes) ========== */
.page-header {
    padding: 140px 60px 60px;
    background: var(--fuchsia-clair);
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gris-doux);
    margin-bottom: 15px;
}

.page-header h1 span {
    color: var(--fuchsia);
    font-style: italic;
}

.page-header p {
    font-size: 16px;
    color: var(--gris-doux);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SECTIONS COMMUNES ========== */
.section {
    padding: 70px 60px;
}

.section-white {
    background: #fff;
}

.section-cream {
    background: var(--blanc-chaud);
}

.section-pink {
    background: var(--fuchsia-clair);
}

.section-fuchsia {
    background: var(--fuchsia);
    color: #fff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--fuchsia);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-fuchsia .section-title {
    color: rgba(255,255,255,0.8);
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--gris-doux);
    margin-bottom: 25px;
    line-height: 1.3;
}

.section h2 span {
    color: var(--fuchsia);
    font-style: italic;
}

.section-fuchsia h2 {
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

/* ========== ABOUT SECTION ========== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .main-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--fuchsia-clair) 0%, #f5e6ea 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: var(--fuchsia);
    flex-direction: column;
}

.about-image .accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--fuchsia);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    line-height: 1.4;
    font-style: italic;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--gris-doux);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text h3 span {
    color: var(--fuchsia);
    font-style: italic;
}

.about-text p {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--gris-doux);
}

.about-text .signature {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--fuchsia);
    margin-top: 30px;
}

/* ========== MANIFESTE SECTION ========== */
.manifeste-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifeste-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--gris-doux);
}

.manifeste-content p.highlight {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--fuchsia);
    margin: 40px 0;
}

.manifeste-content strong {
    color: var(--fuchsia);
}

/* ========== LIVRES GRID ========== */
.livres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.livre-card {
    text-align: center;
    transition: all 0.4s;
}

.livre-card:hover {
    transform: translateY(-10px);
}

.livre-card .cover {
    width: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, var(--fuchsia), #9a2545);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(127, 23, 52, 0.25);
    transition: box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.livre-card .cover img {
    width: 100%;
    height: auto;
    display: block;
}

.livre-card:hover .cover {
    box-shadow: 0 20px 45px rgba(127, 23, 52, 0.35);
}

.livre-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--gris-doux);
}

.livre-card .auteur {
    color: var(--or-doux);
    font-size: 13px;
    letter-spacing: 1px;
}

.livre-card .prix {
    font-size: 16px;
    font-weight: 600;
    color: var(--fuchsia);
    margin-top: 10px;
}

/* Pastille prix ronde sur les couvertures */
.prix-pastille {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--fuchsia);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}

/* Cacher la pastille prix quand il y a une image de couverture */
.cover img ~ .prix-pastille {
    display: none;
}

/* Catalogue : livres en ligne horizontale */
.livres-grid-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.livres-grid-horizontal .livre-card {
    width: 260px;
    flex-shrink: 0;
}

/* Synopsis cliquable */
.livre-synopsis-toggle {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--fuchsia);
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    border-bottom: 1px dashed var(--fuchsia);
    padding-bottom: 2px;
}

.livre-synopsis-toggle:hover {
    opacity: 0.7;
}

.livre-synopsis {
    display: none;
    margin-top: 12px;
    font-size: 13px;
    color: var(--gris-doux);
    line-height: 1.7;
    text-align: left;
    padding: 15px;
    background: var(--fuchsia-clair);
    border-radius: 8px;
    animation: fadeIn 0.3s ease-out;
}

.livre-synopsis.open {
    display: block;
}

/* ========== GALERIE ========== */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.galerie-item {
    height: 250px;
    background: linear-gradient(135deg, var(--fuchsia-clair) 0%, #f5e6ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--fuchsia);
    transition: all 0.3s;
    overflow: hidden;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galerie-item:hover {
    opacity: 0.8;
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
    padding: 70px 60px;
    text-align: center;
    background: var(--fuchsia);
    color: #fff;
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter-section p {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    padding: 15px 35px;
    background: var(--gris-doux);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #333;
}

/* ========== FORMULAIRES ========== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gris-doux);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--fuchsia);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

/* ========== PODCAST ========== */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.podcast-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.podcast-card .cover {
    height: 200px;
    background: linear-gradient(135deg, var(--fuchsia), #9a2545);
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-card .cover .play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.podcast-card:hover .play-btn {
    transform: scale(1.1);
}

.podcast-card .play-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--fuchsia);
    margin-left: 4px;
}

.podcast-card .content {
    padding: 25px;
}

.podcast-card .episode {
    font-size: 12px;
    color: var(--or-doux);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.podcast-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gris-doux);
    margin-bottom: 10px;
}

.podcast-card p {
    font-size: 14px;
    color: var(--gris-doux);
    opacity: 0.7;
}

.podcast-card .duration {
    font-size: 12px;
    color: var(--fuchsia);
    margin-top: 15px;
}

/* ========== COMPTE / PANIER ========== */
.account-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
}

.account-menu {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    height: fit-content;
}

.account-menu a {
    display: block;
    padding: 12px 0;
    color: var(--gris-doux);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
}

.account-menu a:last-child {
    border-bottom: none;
}

.account-menu a:hover,
.account-menu a.active {
    color: var(--fuchsia);
}

.account-content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 25px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.cart-item .cover {
    width: 100px;
    height: 140px;
    background: linear-gradient(135deg, var(--fuchsia), #9a2545);
    border-radius: 4px;
}

.cart-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-item .auteur {
    font-size: 13px;
    color: var(--or-doux);
}

.cart-item .prix {
    font-size: 18px;
    font-weight: 600;
    color: var(--fuchsia);
}

.cart-item .remove {
    color: var(--gris-doux);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cart-item .remove:hover {
    opacity: 1;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    font-size: 20px;
    font-weight: 600;
}

.cart-total span:last-child {
    color: var(--fuchsia);
    font-size: 24px;
}

/* ========== FOOTER ========== */
footer {
    padding: 60px;
    background: var(--gris-doux);
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand .logo {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #d4a5b0;
}

.footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    opacity: 0.5;
}

/* ========== PAGES LÉGALES ========== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gris-doux);
    margin: 40px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--gris-doux);
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--gris-doux);
}

/* ========== PAGE DÉTAIL LIVRE ========== */
.livre-breadcrumb {
    padding: 100px 60px 15px;
    background: var(--blanc-chaud);
    font-size: 13px;
}

.livre-breadcrumb a {
    color: var(--gris-doux);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.livre-breadcrumb a:hover {
    opacity: 1;
    color: var(--fuchsia);
}

.livre-breadcrumb span {
    color: var(--gris-doux);
    font-weight: 500;
}

.livre-detail {
    padding-top: 30px;
}

.livre-detail-top {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.livre-detail-cover .cover {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, var(--fuchsia), #9a2545);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(127, 23, 52, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,0.8);
}

.livre-detail-cover .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.livre-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--gris-doux);
    margin-bottom: 10px;
    line-height: 1.3;
}

.livre-detail-author {
    font-size: 16px;
    color: var(--or-doux);
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 500;
}

.livre-detail-category {
    font-size: 13px;
    color: var(--fuchsia);
    background: var(--fuchsia-clair);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 25px;
    font-weight: 500;
}

.livre-detail-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--fuchsia);
    font-weight: 700;
    margin-bottom: 25px;
}

.livre-detail-formats {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.livre-format-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #eee;
    border-radius: 8px;
    background: #fff;
    color: var(--gris-doux);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.livre-format-btn:hover {
    border-color: var(--fuchsia);
    color: var(--fuchsia);
}

.livre-format-btn.active {
    border-color: var(--fuchsia);
    background: var(--fuchsia-clair);
    color: var(--fuchsia);
    font-weight: 600;
}

.livre-format-btn.kindle {
    border-color: #FF9900;
    color: #FF9900;
}

.livre-format-btn.kindle:hover {
    background: #FFF3E0;
}

.livre-detail-cart-btn {
    width: 100%;
    max-width: 350px;
    padding: 16px 40px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.livre-detail-description {
    margin-bottom: 50px;
    max-width: 800px;
}

.livre-detail-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gris-doux);
    margin-bottom: 20px;
}

.livre-detail-description p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gris-doux);
}

.livre-detail-specs {
    max-width: 700px;
}

.livre-detail-specs h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gris-doux);
    margin-bottom: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table tr:nth-child(even) {
    background: var(--fuchsia-clair);
}

.specs-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--gris-doux);
}

.specs-table td:first-child {
    font-weight: 600;
    width: 200px;
    color: var(--gris-doux);
}

/* ========== PAGE AUTEURS ========== */
.auteurs-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.auteurs-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gris-doux);
}

.auteurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.auteur-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s;
    text-align: center;
}

.auteur-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.auteur-card .auteur-photo {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--fuchsia-clair) 0%, #f5e6ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: var(--fuchsia);
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.auteur-card .auteur-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auteur-card .auteur-content {
    padding: 30px;
}

.auteur-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gris-doux);
    margin-bottom: 8px;
}

.auteur-card .auteur-role {
    font-size: 13px;
    color: var(--or-doux);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}

.auteur-card .auteur-bio {
    font-size: 14px;
    color: var(--gris-doux);
    line-height: 1.7;
    margin-bottom: 20px;
}

.auteur-card .btn {
    font-size: 12px;
    padding: 10px 25px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .livres-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .galerie-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .auteurs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .livre-detail-top {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    .livre-detail-cover .cover {
        height: 380px;
    }

    .auteur-detail-top {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 16px;
        gap: 12px;
    }

    .logo {
        font-size: 18px;
        white-space: nowrap;
    }

    .hide-mobile {
        display: none;
    }

    .nav-actions {
        gap: 14px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--blanc-chaud);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(127, 23, 52, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 100px 20px 40px;
        min-height: auto;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-text .btn + .btn {
        margin-top: 14px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image {
        min-height: 300px;
        margin-top: 40px;
    }

    .section {
        padding: 50px 20px;
    }

    .page-header {
        padding: 100px 20px 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .about-image .accent-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        width: 100%;
        height: auto;
        padding: 30px;
    }

    .livres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galerie-item {
        height: 150px;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
    }

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

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

    .account-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .cart-item .prix,
    .cart-item .remove {
        grid-column: 2;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    footer {
        padding: 40px 20px;
    }

    .livre-breadcrumb {
        padding: 90px 20px 10px;
    }

    .livre-detail-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .livre-detail-cover {
        max-width: 300px;
        margin: 0 auto;
    }

    .livre-detail-cover .cover {
        height: 400px;
    }

    .livre-detail-info {
        text-align: center;
    }

    .livre-detail-formats {
        justify-content: center;
    }

    .livre-detail-cart-btn {
        max-width: 100%;
    }

    .livre-detail-title {
        font-size: 28px;
    }

    .livre-detail-price {
        font-size: 26px;
    }

    .specs-table td:first-child {
        width: auto;
    }

    .auteurs-grid {
        grid-template-columns: 1fr;
    }

    .auteur-detail-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .auteur-detail-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .auteur-detail-info {
        text-align: center;
    }

}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .livres-grid {
        grid-template-columns: 1fr;
    }

    .livre-card .cover {
        min-height: 350px;
        height: auto;
    }

    .btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}

/* ========== PAGE AUTEUR DETAIL ========== */
.auteur-detail-top {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.auteur-detail-photo .auteur-photo-placeholder,
.auteur-detail-photo img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.auteur-detail-photo .auteur-photo-placeholder {
    height: 450px;
    background: linear-gradient(135deg, var(--fuchsia-clair) 0%, #f5e6ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: var(--fuchsia);
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
}

.auteur-detail-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== FILTRES CATALOGUE (DROPDOWNS) ========== */
.catalogue-filters {
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gris-doux);
    opacity: 0.6;
}

.filter-select {
    padding: 10px 35px 10px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: var(--gris-doux);
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    min-width: 180px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--fuchsia);
}

.filter-select:hover {
    border-color: var(--fuchsia);
}

@media (max-width: 768px) {
    .catalogue-filters {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        align-items: stretch;
    }

    .filter-group {
        flex: 1 1 0;
        min-width: 0;
    }

    .filter-group-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .filter-select {
        min-width: 0;
        width: 100%;
        padding: 9px 26px 9px 10px;
        font-size: 12px;
        background-position: right 8px center;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ========== IMPRESSION ========== */
@media print {
    @page {
        size: A4;
        margin: 0;
    }

    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    nav {
        position: relative;
        background: var(--blanc-chaud) !important;
        border-bottom: 2px solid var(--fuchsia);
    }

    .hero {
        height: auto;
        min-height: 500px;
        page-break-after: always;
    }

    .newsletter-section {
        background: var(--fuchsia) !important;
    }

    footer {
        background: var(--gris-doux) !important;
    }

    .btn {
        background: var(--fuchsia) !important;
    }

    .btn-outline {
        background: transparent !important;
        border: 2px solid var(--fuchsia) !important;
    }
}
