/*
Theme Name: Daphnée Opale
Theme URI: https://daphneeopale.com
Description: Un thème sur-mesure pour Daphnée Opale, photographe à Gourdon (Lot). Douceur, élégance, nature et instants de vie.
Author: Daphnée Opale
Author URI: https://daphneeopale.com
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: full-site-editing, block-themes, photography, portfolio, one-column, custom-colors
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Cormorant:ital,wght@0,300;0,400;1,300;1,400&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ============================================================
   BASE & GLOBAL
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

::selection {
    background-color: #C07A5A33;
    color: #3E2F23;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed header */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   NAVIGATION HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center !important;
    min-height: 90px;
}

.site-header.is-scrolled {
    background-color: rgba(255, 253, 249, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(62, 47, 35, 0.08);
    min-height: 70px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    width: 92% !important;
    max-width: 1200px;
    margin: 15px auto !important;
    border-radius: 50px;
    left: 0;
    right: 0;
}

/* Logo positionné à gauche sans impacter le centrage du menu */
.wp-block-site-title {
    position: relative !important;
    left: 0 !important;
    margin: 0 !important;
    justify-self: start;
    white-space: nowrap;
}

/* Le menu est forcé au centre mathématique de la barre */
.site-header .wp-block-navigation {
    grid-column: 2;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
}

/* Alignement parfait des liens sur la ligne imaginaire */
.wp-block-navigation__container {
    display: flex !important;
    align-items: center !important;
    gap: 2.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wp-block-navigation-item__content {
    display: flex !important;
    align-items: center !important;
    height: 100%;
    padding: 0 !important;
    line-height: 1 !important;
}

/* On s'assure que le titre est aussi aligné verticalement */
.wp-block-site-title a {
    display: block;
    line-height: 1;
}

.wp-block-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #C07A5A;
    transition: width 0.35s ease, left 0.35s ease;
}

.wp-block-navigation a:hover::after {
    width: 100%;
    left: 0;
}

/* ============================================================
   IMAGES - HOVER & REVEAL
   ============================================================ */

.wp-block-image img,
.wp-block-gallery img,
.wp-block-post-featured-image img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.6s ease,
                opacity 0.6s ease;
}

.wp-block-image:hover img,
.wp-block-gallery figure:hover img,
.wp-block-post-featured-image:hover img {
    transform: scale(1.03);
}

/* Subtle warm filter on gallery images */
.wp-block-gallery img {
    filter: saturate(0.95) contrast(1.02);
}

.wp-block-gallery figure:hover img {
    filter: saturate(1.05) contrast(1.05);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 0.60s; opacity: 1; transform: translateY(0); }

/* ============================================================
   DECORATIVE ELEMENTS
   ============================================================ */

/* Fine horizontal rule with organic feel */
.wp-block-separator {
    border: none !important;
    height: 1px !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #D4A07A 20%,
        #C07A5A 50%,
        #D4A07A 80%,
        transparent 100%
    ) !important;
    max-width: 200px;
    margin: 3rem auto !important;
    opacity: 0.5;
}

.wp-block-separator.is-style-wide {
    max-width: 100%;
}

/* Botanical/leaf-inspired ornament - use with a class "ornament" */
.ornament {
    text-align: center;
    font-size: 1.5rem;
    color: #8B9A6B;
    letter-spacing: 0.5em;
    opacity: 0.4;
    margin: 2rem 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.wp-block-button__link,
.wp-element-button {
    transition: background-color 0.35s ease,
                color 0.35s ease,
                transform 0.25s ease,
                box-shadow 0.35s ease;
}

.wp-block-button__link:hover,
.wp-element-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(192, 122, 90, 0.2);
}

.wp-block-button__link:active,
.wp-element-button:active {
    transform: translateY(0px);
}

/* Outline button variant */
.is-style-outline .wp-block-button__link {
    border: 1px solid #C07A5A;
    color: #C07A5A;
    background: transparent;
}

.is-style-outline .wp-block-button__link:hover {
    background: #C07A5A;
    color: #FFFDF9;
}

/* ============================================================
   QUOTES & TESTIMONIALS
   ============================================================ */

.wp-block-quote {
    position: relative;
}

.wp-block-quote::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    color: #D4A99A;
    opacity: 0.35;
    line-height: 1;
}

.wp-block-quote cite {
    display: block;
    margin-top: 1rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8B9A6B;
}

/* ============================================================
   COVER BLOCK OVERLAY REFINEMENTS
   ============================================================ */

.wp-block-cover {
    min-height: 70vh !important;
}

.wp-block-cover .wp-block-cover__inner-container {
    max-width: 700px;
}

/* ============================================================
   GALLERY REFINEMENTS
   ============================================================ */

.wp-block-gallery {
    gap: 0.75rem !important;
}

.wp-block-gallery.columns-3 .wp-block-image,
.wp-block-gallery.columns-2 .wp-block-image {
    border-radius: 4px;
    overflow: hidden;
}

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

.site-footer a {
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #C07A5A !important;
}

/* ============================================================
   RESPONSIVE REFINEMENTS
   ============================================================ */

@media (max-width: 782px) {
    .wp-block-cover {
        min-height: 50vh !important;
    }

    .wp-block-gallery {
        gap: 0.5rem !important;
    }
}

/* ============================================================
   SUBTLE PARALLAX-LIKE DEPTH (for cover images)
   ============================================================ */

.has-parallax {
    background-attachment: fixed;
}

@media (max-width: 782px) {
    .has-parallax {
        background-attachment: scroll;
    }
}

/* ============================================================
   KEN BURNS SLIDER
   ============================================================ */
.ken-burns-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background-color: #3E2F23;
}

/* ============================================================
   REVIEW CAROUSEL (MARQUEE)
   ============================================================ */
.review-marquee-container {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
    background-color: transparent;
}

.review-marquee {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.review-marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.review-card {
    width: 380px;
    background: var(--wp--preset--color--creme, #FFFDF9);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(62, 47, 35, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 160, 122, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

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

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4A07A;
    padding: 2px;
}

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

.review-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #3E2F23;
}

.review-stars {
    color: #D4A07A;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #5A4E45;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #D4A07A;
    opacity: 0.2;
    position: absolute;
    top: -1.5rem;
    left: -1rem;
}

.ken-burns-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s ease-in-out, visibility 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
}

.ken-burns-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.1);
    transition: opacity 2s ease-in-out, visibility 2s ease-in-out, transform 12s linear;
}

.ken-burns-slide.is-exiting {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.15);
    transition: opacity 2s ease-in-out, visibility 2s ease-in-out, transform 12s linear;
}

.ken-burns-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(62, 47, 35, 0.4), rgba(62, 47, 35, 0.1) 40%, rgba(240, 232, 223, 0.1));
    z-index: 2;
}

.ken-burns-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.reviews-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding-bottom: 2rem; /* space for shadow */
    cursor: grab;
    padding-left: 5vw;
    padding-right: 5vw;
}

.reviews-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.reviews-carousel:active {
    cursor: grabbing;
}

.review-card {
    flex: 0 0 350px;
    background-color: var(--wp--preset--color--creme, #FAF6F1);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(192, 122, 90, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(192, 122, 90, 0.12);
}

.review-card-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid #FFFDF9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.review-card-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: #D4A07A; /* Gold/Terra cotta color */
}

.review-card-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.review-card blockquote {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3E2F23;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    flex-grow: 1; /* Pushes the cite to the bottom if varying heights */
}

.review-card blockquote p {
    margin: 0;
}

.review-card cite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #8B9A6B; /* Olive */
    font-style: normal;
}


/* ============================================================
   PRESTATIONS — PREMIUM PRICING
   ============================================================ */
.presta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

/* Category Headers */
.presta-category-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 6rem;
}
.presta-category-header:first-child {
    margin-top: 0;
}
.presta-category-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--wp--preset--color--terra-cotta);
    display: block;
    margin-bottom: 1rem;
}
.presta-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #3E2F23;
    font-weight: 300;
    margin: 0 0 0.8rem;
    line-height: 1.1;
}
.presta-category-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #8B9A6B;
    letter-spacing: 0.05em;
    margin: 0;
}

/* ===== Séance Photo Cards ===== */
.presta-seance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 900px) {
    .presta-seance-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}
.presta-seance-card {
    background: #FFFDF9;
    border: 1px solid rgba(212,160,122,0.15);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.45s cubic-bezier(.25,.8,.25,1), box-shadow 0.45s ease;
}
.presta-seance-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(62,47,35,0.1);
}
.presta-seance-featured {
    border-color: #D4A07A;
    box-shadow: 0 8px 30px rgba(212,160,122,0.15);
}
.presta-seance-ribbon {
    position: absolute;
    top: 18px;
    right: -38px;
    background: #8B9A6B;
    color: #FFFDF9;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 50px;
    transform: rotate(45deg);
    z-index: 2;
}
.presta-seance-img {
    height: 260px;
    overflow: hidden;
}
.presta-seance-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.presta-seance-card:hover .presta-seance-img img {
    transform: scale(1.06);
}
.presta-seance-body {
    padding: 2rem 1.8rem 2.5rem;
    text-align: center;
}
.presta-seance-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #3E2F23;
    font-weight: 400;
    margin: 0 0 0.5rem;
}
.presta-seance-detail {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: #8B9A6B;
    letter-spacing: 0.08em;
    margin: 0 0 1.5rem;
}
.presta-seance-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #D4A07A;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    margin: 0 0 2rem;
}
.presta-seance-price span {
    font-size: 1.5rem;
    vertical-align: super;
}

/* Buttons */
.presta-btn {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 1px solid #D4A07A;
    color: #D4A07A;
    background: transparent;
    border-radius: 2px;
    transition: all 0.35s ease;
    cursor: pointer;
}
.presta-btn:hover {
    background: #D4A07A;
    color: #FFFDF9;
}
.presta-btn-fill {
    background: #D4A07A;
    color: #FFFDF9;
}
.presta-btn-fill:hover {
    background: #3E2F23;
    border-color: #3E2F23;
    color: #FFFDF9;
}
.presta-btn-lg {
    padding: 1.2rem 3.5rem;
    font-size: 0.9rem;
}

/* ===== Table — Photos numériques ===== */
.presta-table-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFDF9;
    border: 1px solid rgba(212,160,122,0.15);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(62,47,35,0.04);
}
.presta-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Raleway', sans-serif;
}
.presta-table thead {
    background: #3E2F23;
}
.presta-table thead th {
    color: #FFFDF9;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.2rem 1.5rem;
    text-align: center;
}
.presta-table tbody td {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 1rem;
    color: #5a5a5a;
    border-bottom: 1px solid rgba(139,154,107,0.1);
    transition: background-color 0.3s ease;
}
.presta-table tbody tr:hover td {
    background-color: rgba(240,232,223,0.4);
}
.presta-table tbody td strong {
    color: #3E2F23;
    font-size: 1.15rem;
}
.presta-table-supp {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem !important;
    color: #D4A07A !important;
    font-style: italic;
    font-weight: 400;
    vertical-align: middle;
}
.presta-table-highlight td {
    background-color: rgba(139,154,107,0.06);
}
.presta-table-highlight:hover td {
    background-color: rgba(139,154,107,0.12) !important;
}

/* ===== Tirages Papiers ===== */
.presta-tirages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 900px) {
    .presta-tirages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
.presta-tirage-card {
    background: #FFFDF9;
    border: 1px solid rgba(212,160,122,0.15);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.45s cubic-bezier(.25,.8,.25,1), box-shadow 0.45s ease;
}
.presta-tirage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62,47,35,0.08);
}
.presta-tirage-featured {
    border-color: #D4A07A;
    background: linear-gradient(180deg, rgba(240,232,223,0.4) 0%, #FFFDF9 100%);
    box-shadow: 0 6px 25px rgba(212,160,122,0.1);
}
.presta-tirage-format {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #3E2F23;
    font-weight: 400;
    margin-bottom: 1rem;
}
.presta-tirage-price-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #D4A07A;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
}
.presta-tirage-price-main span {
    font-size: 1.5rem;
    vertical-align: super;
}
.presta-tirage-unit {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: #8B9A6B;
    letter-spacing: 0.08em;
    margin: 0.5rem 0 2rem;
}
.presta-tirage-lots {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.presta-tirage-lots li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    color: #5a5a5a;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139,154,107,0.1);
    line-height: 1.5;
}
.presta-tirage-lots li:last-child {
    border-bottom: none;
}
.presta-tirage-lots li em {
    color: #8B9A6B;
    font-style: normal;
    font-size: 0.82rem;
}
.presta-tirage-lots li strong {
    color: #3E2F23;
}

/* ===== CTA Block ===== */
.presta-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(240,232,223,0.5) 0%, rgba(139,154,107,0.08) 100%);
    border-radius: 8px;
}
.presta-cta-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #3E2F23;
    font-weight: 300;
    font-style: italic;
    margin: 0 0 2rem;
}

/* ===== Background Image Section ===== */
.presta-bg-section {
    position: relative;
    margin-top: 6rem;
    padding: 5rem 2rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 0;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}
.presta-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 47, 35, 0.65);
    z-index: 1;
}
.presta-bg-content {
    position: relative;
    z-index: 2;
}
.presta-bg-section .presta-table-wrapper {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* ===== Contact Map ===== */
.contact-map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(62,47,35,0.1);
    margin: 2rem 0;
}
.contact-map-wrapper iframe {
    display: block;
}

/* ===== Maquillages ===== */
.presta-makeup-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1000px) {
    .presta-makeup-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .presta-makeup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.presta-makeup-card {
    text-align: center;
}
.presta-makeup-img {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.presta-makeup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
}
.presta-makeup-card:hover .presta-makeup-img img {
    transform: scale(1.08);
}
.presta-makeup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(62,47,35,0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.presta-makeup-card:hover .presta-makeup-overlay {
    opacity: 1;
}
.presta-makeup-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #FFFDF9;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.presta-makeup-price span {
    font-size: 1.2rem;
    vertical-align: super;
}
.presta-makeup-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #3E2F23;
    font-weight: 400;
    margin: 1rem 0 0;
}

/* ============================================================
   BOUTIQUE
   ============================================================ */
.boutique-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.boutique-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 47, 35, 0.45);
    z-index: 1;
}
.boutique-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}
.boutique-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: #FFFDF9;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
}
.boutique-hero-sub {
    font-family: var(--wp--preset--font-family--body, 'Nunito', sans-serif);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,253,249,0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}
.boutique-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}
.boutique-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
@media (max-width: 768px) {
    .boutique-products { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
.boutique-product-card {
    background: #FFFDF9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(62,47,35,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.boutique-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(62,47,35,0.12);
}
.boutique-product-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.boutique-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
}
.boutique-product-card:hover .boutique-product-img img {
    transform: scale(1.06);
}
.boutique-product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(62,47,35,0.85);
    color: #FFFDF9;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}
.boutique-product-body {
    padding: 2rem;
    text-align: center;
}
.boutique-product-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #3E2F23;
    font-weight: 400;
    margin: 0 0 0.8rem;
}
.boutique-product-desc {
    font-family: var(--wp--preset--font-family--body, 'Nunito', sans-serif);
    font-size: 0.95rem;
    color: #7A6B5F;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}
.boutique-product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #C4956A;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.boutique-product-price span {
    font-size: 1.2rem;
    vertical-align: super;
}
.boutique-giftcard-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #FFFDF9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(62,47,35,0.06);
}
@media (max-width: 768px) {
    .boutique-giftcard-wrapper { grid-template-columns: 1fr; }
}
.boutique-giftcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.boutique-giftcard-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.boutique-giftcard-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #3E2F23;
    font-weight: 400;
    margin: 0 0 1rem;
}
.boutique-giftcard-body p {
    font-size: 0.95rem;
    color: #7A6B5F;
    line-height: 1.7;
    margin: 0 0 2rem;
}
.boutique-giftcard-options {
    display: flex;
    gap: 1rem;
}
.boutique-giftcard-option {
    flex: 1;
    text-align: center;
    padding: 1.2rem 0.5rem;
    border: 1px solid rgba(212,160,122,0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.boutique-giftcard-option:hover,
.boutique-giftcard-option.active {
    border-color: #C4956A;
    background: rgba(212,160,122,0.05);
    transform: translateY(-3px);
}
.boutique-giftcard-option.active {
    background: rgba(212,160,122,0.1);
    box-shadow: 0 5px 15px rgba(212,160,122,0.1);
}
.boutique-gc-featured {
    border-color: rgba(212,160,122,0.4);
}
.boutique-gc-featured.active {
    border-color: #C4956A;
    background: linear-gradient(135deg, rgba(212,160,122,0.12), rgba(212,160,122,0.05));
}
.boutique-gc-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #C4956A;
    font-weight: 300;
    font-style: italic;
    display: block;
    line-height: 1;
}
.boutique-gc-amount span {
    font-size: 1rem;
    vertical-align: super;
}
.boutique-gc-label {
    font-size: 0.8rem;
    color: #7A6B5F;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
}

/* ===== Press / Vu dans le journal ===== */
.boutique-press {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #FFFDF9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(62,47,35,0.06);
}
@media (max-width: 768px) {
    .boutique-press { grid-template-columns: 1fr; }
}
.boutique-press-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.boutique-press-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.boutique-press-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #3E2F23;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 2rem;
    line-height: 1.4;
}
.boutique-press-quotes blockquote {
    font-size: 0.9rem;
    color: #7A6B5F;
    line-height: 1.8;
    border-left: 2px solid #C4956A;
    padding-left: 1.2rem;
    margin: 0 0 1.5rem;
    font-style: italic;
}
.boutique-press-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.boutique-press-tags span {
    font-size: 0.75rem;
    color: #C4956A;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(196,149,106,0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}
.boutique-press-tags span:hover {
    background: rgba(196,149,106,0.08);
    border-color: #C4956A;
}


/* ===== Home CTA Centering ===== */
.home-cta-centered .wp-block-buttons {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.home-cta-centered .wp-block-button {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ============================================================
   WOOCOMMERCE CHECKOUT STICKY
   ============================================================ */
@media (min-width: 992px) {
    .woocommerce-checkout #order_review,
    .woocommerce-checkout-review-order {
        position: -webkit-sticky;
        position: sticky;
        top: 120px;
        z-index: 99;
    }
}

/* ============================================================
   EFFET FLOTTANT & STICKY REFINEMENT
   ============================================================ */
.presta-seance-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.presta-seance-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 40px 80px rgba(166,124,82,0.15) !important;
}

/* Correction Sticky pour le formulaire de réservation */
.daphnee-booking-container {
    overflow: visible !important;
}

.booking-card {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 120px !important;
    z-index: 999 !important;
}

