@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600&family=Lato:wght@300;400;700&family=Roboto:wght@300;400;500;700&family=Birthstone&display=swap');

/* Custom Font - Elegant */
@font-face {
    font-family: 'Elegant';
    src: url('../fonts/Elegant DEMO.ttf') format('truetype'),
         url('../fonts/Elegant%20DEMO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom Font - Chalkboard */
@font-face {
    font-family: 'Chalkboard';
    src: url('../fonts/Chalkboard.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom Font - CaviarDreams */
@font-face {
    font-family: 'CaviarDreams';
    src: url('../fonts/CaviarDreams.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom Font - Bricktown */
@font-face {
    font-family: 'Bricktown';
    src: url('../fonts/Bricktown.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom Font - Dolce Vita */
@font-face {
    font-family: 'Dolce Vita';
    src: url('../fonts/Dolce Vita.ttf') format('truetype'),
         url('../fonts/Dolce%20Vita.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom Font - Gradient */
@font-face {
    font-family: 'Gradient';
    src: url('../fonts/Gradient.ttf') format('truetype'),
         url('../fonts/Gradient%20.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom Font - Gradient Bold */
@font-face {
    font-family: 'Gradient Bold';
    src: url('../fonts/Gradient Bold.ttf') format('truetype'),
         url('../fonts/Gradient%20Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Custom Font - Parisienne */
@font-face {
    font-family: 'Parisienne';
    src: url('../fonts/Parisienne-Regular.ttf') format('truetype'),
         url('../fonts/Parisienne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-color: #8B7355;
    --secondary-color: #D4C4B0;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #F5F1E8;
    font-weight: 300;
}

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    opacity: 0.7;
}

.social-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    transition: var(--transition);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-reservation,
.btn-contact {
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.btn-reservation {
    background-color: #E8D5B7;
    color: #000000;
    font-weight: 400;
}

.btn-reservation:hover {
    background-color: #D4C4B0;
}

.btn-contact {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    gap: 40px;
    position: relative;
}

.logo {
    flex-shrink: 0;
    margin: 0 40px;
}

.logo a {
    display: block;
    text-decoration: none;
    text-align: center;
}

.logo-image {
    height: 220px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.logo-text {
    font-family: 'Parisienne', 'Gradient Bold', 'Gradient', 'Dolce Vita', 'Elegant', 'Playfair Display', serif;
    font-size: 26px;
    color: #d4af37;
    margin-top: 10px;
    letter-spacing: 2px;
    font-weight: normal;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(212, 175, 55, 0.4),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex: 1;
    flex-wrap: nowrap;
}

.nav-menu-left {
    justify-content: flex-end;
}

.nav-menu-right {
    justify-content: flex-start;
}

.nav-menu li {
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    font-family: 'Lato', sans-serif;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
    transition: var(--transition);
}

.menu-toggle.menu-toggle-fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1002;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: #f0f0f0;
}

.hero-video {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

.location {
    font-size: 24px;
    font-style: italic;
}

/* Sections */
.espace-section,
.prestations-section,
.quote-section,
.contact-section,
.about-section,
.description-section {
    padding: 60px 0;
}

.prestations-section {
    background-color: #e8ddd0;
}

.horaires-section {
    padding: 60px 0;
}

.espace-section {
    background-color: var(--bg-light);
}

.espace-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.cabine-duo h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cabine-duo p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--light-text);
    font-size: 16px;
}

.placeholder-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.prestations-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

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

.prestation-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
}

.prestation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.prestation-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.prestation-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 22px;
}

.prestation-title-elegant {
    font-family: 'CaviarDreams', 'Elegant', 'Playfair Display', serif !important;
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 28px !important;
    text-align: center;
    margin: 0;
    font-weight: normal;
    text-transform: none !important;
}

.prestation-card p {
    padding: 0 20px 20px;
    color: var(--light-text);
}

.btn-prestation {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-prestation:hover {
    background-color: #6b5a42;
}

.quote-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.horaires-section {
    background: linear-gradient(135deg, #d4ccc0 0%, #c9c1b5 100%) !important;
    color: var(--text-color);
    text-align: center;
    width: 100% !important;
    display: block !important;
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.quote-section p {
    font-size: 28px;
    font-style: italic;
    line-height: 1.8;
}

.contact-section {
    text-align: center;
    background-color: var(--bg-light);
}

.contact-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

.phone {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-contact-main {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: var(--transition);
}

.btn-contact-main:hover {
    background-color: #6b5a42;
}

.about-section {
    background-image: url('../images/fond.webp');
    background-repeat: repeat;
    background-position: center;
}

.description-section {
    background-color: var(--white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 0.8fr 2.5fr;
    gap: 0;
    align-items: center;
}

.about-image {
    transform: scaleX(-1);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-text-content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 100%;
}

.about-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 400;
    text-align: center;
}

.about-subtitle {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
    text-align: center;
}

.about-text-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.9;
    text-align: center;
}

.about-section-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.about-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--light-text);
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.about-separator {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 40px 0;
    width: 100px;
}

.about-section h2,
.description-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

/* Marques Section */
.marques-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(212, 196, 176, 0.1) 0%, rgba(139, 115, 85, 0.05) 100%);
}

.marques-encart {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.marques-encart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #8B7355, #d4af37);
}

.marques-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

.marques-subtitle {
    font-size: 18px;
    color: var(--light-text);
    margin-top: 30px;
    font-style: italic;
    line-height: 1.6;
}

.marques-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.marque-logo-item {
    flex: 0 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.marque-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--white);
}

.marque-logo {
    max-width: 180px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.marque-logo-item:hover .marque-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
}

.description-content p {
    margin-bottom: 20px;
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.8;
}

.expertise {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 18px;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    margin: 0;
    width: 100%;
}

.philosophy-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.philosophy-content {
    width: 100%;
    background-color: transparent;
    padding: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.philosophy-block {
    background-color: var(--white);
    padding: 60px 80px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.philosophy-title {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    width: 100%;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

.philosophy-subtitle {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
    width: 100%;
}

.philosophy-separator {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 0 auto 40px;
}

.philosophy-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.philosophy-text:last-child {
    margin-bottom: 0;
}

/* Horaires Section - Styles supplémentaires */
.horaires-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.horaires-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 400;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

.horaires-content {
    max-width: 700px;
    margin: 0 auto;
}

.horaires-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.horaires-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.horaires-day:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
}

.horaires-day-highlight {
    background-color: #E8D5B7;
    border-left-color: var(--primary-color);
    font-weight: 600;
}

.horaires-day-closed {
    opacity: 0.7;
}

.day-name {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

.horaires-day-highlight .day-name {
    color: var(--primary-color);
    font-weight: 600;
}

.day-hours {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 400;
}

.horaires-day-highlight .day-hours {
    color: var(--primary-color);
    font-weight: 600;
}

.horaires-day-closed .day-hours {
    color: #6c757d;
    font-style: italic;
}

.horaires-note {
    font-size: 16px;
    color: var(--light-text);
    font-style: italic;
    line-height: 1.6;
    margin-top: 30px;
}

.horaires-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.horaires-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--light-text);
    font-size: 16px;
}

/* Page Content */
.page-content {
    min-height: 60vh;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

.page-hero-image {
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0;
    display: block;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.content-text h2 {
    font-size: 32px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-text p {
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.8;
}

.services-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.services-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    background-image: url('../images/card.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: block;
}

.service-card-featured {
    border: 2px solid #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
    transform: translateY(-4px);
}

.service-card-featured .service-card-title {
    color: #ffd98a;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.3s ease;
}

/* Ajustement spécifique pour l'image du Brushing (recadrage vers le bas pour mieux voir le bas de l'image) */
.service-card-image img.brushing-image {
    object-fit: cover;          /* comme les autres, pour remplir la carte */
    object-position: center 70%; /* on glisse l'image vers le haut du cadre pour montrer davantage le bas */
}

/* Ajustement spécifique pour l'image du Massage Voyage Intérieur
   - on garde un remplissage plein (cover) mais avec plus de hauteur
   - cela permet de voir davantage la photo tout en évitant les marges latérales */
.service-card-image img.voyage-image {
    object-fit: cover;
    object-position: center 50%;
}

/* Augmenter la hauteur du conteneur pour la carte Voyage Intérieur */
.service-card:has(.voyage-image) .service-card-image {
    height: 340px;
}

/* Ajustement spécifique pour l'image du rituel "Massage Voyage Intérieur suivi d'une Évasion Sonore" (un peu remontée) */
.service-card-image img.voyage-rituel-image {
    object-fit: cover;
    object-position: center 70%;
}

/* Ajustement spécifique pour l'image Sophro Glow (recadrage pour montrer le texte au-dessus du visage) */
.service-card-image img.glow-image {
    object-fit: cover;
    object-position: center 25%;
}

/* Réduire la hauteur du conteneur pour la carte Sophro Glow */
.service-card:has(.glow-image) .service-card-image {
    height: 220px;
}

/* Ajustement spécifique pour l'image Ange de beauté (image entièrement visible mais plus grande) */
.service-card-image img.ange-beaute-image {
    object-fit: cover;
    object-position: center 45%;
    width: 100%;
    height: 100%;
}

/* Augmenter la hauteur du conteneur pour la carte Ange de beauté */
.service-card:has(.ange-beaute-image) .service-card-image {
    height: 300px;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

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

.service-card-title {
    font-size: 24px;
    color: #D4C4B0;
    margin-bottom: 8px;
    font-weight: bold;
}

.service-card-category {
    font-size: 14px;
    color: #B0E0E6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.service-duration {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

.service-price {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    white-space: nowrap; /* évite le retour à la ligne du symbole € en mobile */
}

.service-footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-option {
    font-size: 13px;
    color: #d4af37;
    font-weight: 600;
}

.service-footer-right {
    text-align: right;
}

.cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--white);
}

.cta-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #6b5a42;
}

/* Offers Section */
.offers-section {
    padding: 60px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.offer-card.featured {
    border: 3px solid var(--primary-color);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.offer-description {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-price {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: var(--light-text);
    margin-right: 10px;
}

.new-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-offer {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: var(--transition);
}

.btn-offer:hover {
    background-color: #6b5a42;
}

/* Contact Page */
.contact-page-section {
    padding: 60px 0;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
}

.contact-reservation-line {
    margin-top: 15px;
    font-style: italic;
    color: var(--primary-color);
    line-height: 2;
}

.btn-reservation-inline {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    font-style: normal;
}

.btn-reservation-inline:hover {
    background-color: #6b5a42;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

.contact-card p {
    color: var(--light-text);
    line-height: 1.8;
    margin: 0;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: #6b5a42;
    text-decoration: underline;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 8px;
}

.contact-social-link:hover {
    background-color: rgba(139, 115, 85, 0.1);
    transform: translateX(5px);
}

.contact-social-link img {
    width: 24px;
    height: 24px;
}

.contact-map-section {
    margin-top: 60px;
}

.contact-map-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

.contact-map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--light-text);
    line-height: 1.8;
}

.contact-horaires {
    color: var(--light-text);
    line-height: 2;
}

.contact-horaires p {
    margin-bottom: 8px;
}

.contact-horaires p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.form-success-message {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.1), rgba(212, 196, 176, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.form-success-message p {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-container h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

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

/* Legal Pages */
.legal-section {
    padding: 60px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer-nolly {
    background: #232323;
    color: #fffbe6;
    padding: 48px 0 0 0;
    font-family: 'Roboto', sans-serif;
    border-top: 2.5px solid #D4AF37;
    box-shadow: 0 -2px 24px rgba(212, 175, 55, 0.08);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 32px;
    padding: 0 24px 24px 24px;
}

.footer-col {
    flex: 1 1 300px;
    min-width: 260px;
    max-width: 400px;
    margin-bottom: 32px;
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    padding: 24px 18px 18px 18px;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.04);
}

.footer-title {
    color: #fffbe6;
    font-family: 'Birthstone', cursive;
    font-size: 2rem;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-align: center;
}

.footer-map-leaflet {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.10);
    border: 1.5px solid #D4AF37;
}

.footer-address {
    color: #fffbe6;
    font-size: 1.05rem;
    margin-bottom: 8px;
    text-align: center;
}

.footer-tel {
    color: #D4AF37;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-tel:hover {
    color: #fffbe6;
}

.footer-insta-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fffbe6;
    text-decoration: underline;
}

.footer-copyright {
    color: #fffbe6;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 18px;
    opacity: 0.8;
}

.footer-map-leaflet .leaflet-control-attribution,
.footer-map-leaflet .leaflet-control-container .leaflet-control-attribution {
    display: none !important;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accept,
.btn-refuse,
.btn-preferences {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: #6b5a42;
}

.btn-refuse {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-refuse:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-preferences {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-preferences:hover {
    background-color: rgba(212, 196, 176, 0.1);
}

/* Responsive Design */
@media (max-width: 1900px) {
    .navbar {
        gap: 10px;
        padding: 25px 10px;
    }
    
    .nav-menu {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu-left,
    .nav-menu-right {
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 11px;
        letter-spacing: 0.4px;
    }
    
    .logo {
        margin: 0 15px;
    }
    
    .logo-image {
        height: 176px;
    }
}

@media (max-width: 1200px) {
    .navbar {
        gap: 8px;
        padding: 25px 8px;
    }
    
    .nav-menu {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
    
    .logo {
        margin: 0 12px;
    }
    
    .logo-image {
        height: 162px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        gap: 8px;
        padding: 20px 8px;
    }
    
    .nav-menu {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 9px;
        letter-spacing: 0.2px;
    }
    
    .logo {
        margin: 0 12px;
    }
    
    .logo-image {
        height: 120px;
    }
}

@media (max-width: 900px) {
    .navbar {
        gap: 6px;
        padding: 20px 5px;
    }
    
    .nav-menu {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 8px;
        letter-spacing: 0.1px;
    }
    
    .logo {
        margin: 0 10px;
    }
    
    .logo-image {
        height: 132px;
    }
}

@media (max-width: 968px) {
    .navbar {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav-menu-left,
    .nav-menu-right {
        justify-content: center;
        flex: 1 1 100%;
        order: 2;
    }
    
    .logo {
        order: 1;
        margin: 0;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-menu-left,
    .nav-menu-right {
        flex-direction: column;
        position: fixed;
        left: -100%;
        top: 0;
        background-color: var(--white);
        width: 80%;
        height: auto;
        max-height: 100vh;
        padding: 80px 20px 20px;
        transition: var(--transition);
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu-left.active {
        left: 0;
    }
    
    .nav-menu-right.active {
        left: 0;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .logo {
        order: 0;
        margin-bottom: 20px;
    }
    
    .logo-image {
        height: 132px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .menu-toggle.menu-toggle-fixed {
        position: fixed;
        top: 20px;
        right: 20px;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        z-index: 1002;
    }
    
    .navbar {
        position: relative;
    }

    .header-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-image-wrapper {
        margin-bottom: -20px;
    }
    
    .about-image {
        width: 100%;
        margin: 0 auto;
        display: block;
        border-radius: 30px 30px 0 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: scaleX(1);
    }
    
    .about-text-content {
        padding: 30px 25px;
        margin-top: 0;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-subtitle {
        font-size: 20px;
    }
    
    .philosophy-section {
        padding: 60px 0;
    }
    
    .philosophy-section .container {
        padding: 0 30px;
    }
    
    .philosophy-block {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .philosophy-title {
        font-size: 28px;
    }
    
    .philosophy-subtitle {
        font-size: 24px;
    }
    
    .philosophy-text {
        font-size: 16px;
    }
    
    .horaires-section {
        padding: 60px 0;
    }
    
    .horaires-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .horaires-day {
        padding: 18px 20px;
    }
    
    .day-name,
    .day-hours {
        font-size: 16px;
    }
    
    .horaires-note {
        font-size: 14px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    
    .footer-col {
        max-width: 100%;
        width: 100%;
        margin-bottom: 18px;
    }
    
    .services-intro {
        padding: 0 20px;
    }
    
    .services-filters {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-title {
        font-size: 22px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .location {
        font-size: 18px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-map-container {
        height: 350px;
    }
    
    .contact-intro {
        padding: 0 20px;
        font-size: 16px;
    }
    
    .marques-section {
        padding: 40px 0;
    }
    
    .marques-encart {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .marques-title {
        font-size: 26px;
    }
    
    .marques-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .marques-logos {
        gap: 30px;
    }
    
    .marque-logo-item {
        padding: 15px;
    }
    
    .marque-logo {
        max-width: 140px;
        max-height: 90px;
    }

    .prestations-grid,
    .services-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .btn-accept,
    .btn-refuse,
    .btn-preferences {
        width: 100%;
        text-align: center;
    }
}

/* Styles spécifiques pour les cartes produits boutique */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D5B7 50%, #D4C4B0 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.25);
}

.product-card-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #F5E6D3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, rgba(245, 230, 211, 0.95) 0%, rgba(232, 213, 183, 0.98) 100%);
}

.product-card-category {
    font-size: 12px;
    color: #8B7355;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-card-title {
    font-size: 22px;
    color: #5C4A37;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.product-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6B5B4A;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(139, 115, 85, 0.2);
    margin-top: auto;
}

.product-availability {
    font-size: 15px;
    color: #5C4A37;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    padding: 12px;
    background-color: rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.product-price {
    font-size: 20px;
    color: #5C4A37;
    font-weight: 700;
    white-space: nowrap;
}

/* Responsive pour les cartes produits */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .product-card-image {
        height: 350px;
        padding: 15px;
    }
    
    .product-card-content {
        padding: 20px;
    }
    
    .product-card-title {
        font-size: 20px;
    }
}

/* Chèque Cadeau Section */
.cheque-cadeau-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F5F1E8 0%, #FAF7F0 50%, #F5F1E8 100%);
    position: relative;
}

.cheque-cadeau-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 196, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 115, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cheque-cadeau-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cheque-cadeau-title {
    font-size: 36px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.cheque-cadeau-title::after {
    content: '✨';
    display: block;
    font-size: 24px;
    margin-top: 15px;
    opacity: 0.6;
}

.cheque-cadeau-text {
    background: rgba(255, 255, 255, 0.7);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 196, 176, 0.3);
}

.cheque-cadeau-intro {
    font-size: 20px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.cheque-cadeau-highlight {
    font-size: 22px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding: 0 20px;
}

.cheque-cadeau-highlight::before,
.cheque-cadeau-highlight::after {
    content: '~';
    color: var(--secondary-color);
    font-size: 28px;
    opacity: 0.5;
    margin: 0 10px;
}

.cheque-cadeau-poetic {
    font-size: 18px;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-style: italic;
}

.cheque-cadeau-separator {
    text-align: center;
    font-size: 32px;
    color: var(--secondary-color);
    margin: 40px 0;
    opacity: 0.6;
}

.cheque-cadeau-description {
    font-size: 17px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cheque-cadeau-occasion {
    font-size: 18px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.8;
    font-weight: 400;
}

.cheque-cadeau-message {
    font-size: 19px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-style: italic;
}

.cheque-cadeau-quote {
    background: linear-gradient(135deg, rgba(212, 196, 176, 0.2), rgba(139, 115, 85, 0.1));
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 40px;
    text-align: center;
}

.cheque-cadeau-quote p {
    font-size: 20px;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.cheque-cadeau-quote p::before {
    content: '"';
    font-size: 40px;
    color: var(--secondary-color);
    opacity: 0.5;
    margin-right: 10px;
}

.cheque-cadeau-quote p::after {
    content: '"';
    font-size: 40px;
    color: var(--secondary-color);
    opacity: 0.5;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .cheque-cadeau-title {
        font-size: 28px;
    }

    .cheque-cadeau-text {
        padding: 35px 25px;
    }

    .cheque-cadeau-intro {
        font-size: 18px;
    }

    .cheque-cadeau-highlight {
        font-size: 19px;
    }

    .cheque-cadeau-poetic {
        font-size: 16px;
    }

    .cheque-cadeau-description {
        font-size: 16px;
    }

    .cheque-cadeau-occasion {
        font-size: 16px;
    }

    .cheque-cadeau-message {
        font-size: 17px;
    }

    .cheque-cadeau-quote p {
        font-size: 18px;
    }
}

/* Mobile téléphone - réduction supplémentaire du header */
@media (max-width: 600px) {
    .logo-image {
        height: 100px;
        max-width: 200px;
    }
    
    .logo-text {
        font-size: 18px;
        margin-top: 5px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .header-top {
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card-image {
        height: 400px;
    }
    
    .logo-image {
        height: 90px;
        max-width: 180px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
}

/* Chèque Type Sections */
.cheque-type-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #FAF7F0 0%, #F5F1E8 100%);
    position: relative;
}

.cheque-type-section-alt {
    background: linear-gradient(180deg, #F5F1E8 0%, #FAF7F0 100%);
}

.cheque-type-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cheque-type-title {
    font-size: 32px;
    font-family: 'Bricktown', 'Elegant', 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.cheque-type-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.cheque-type-description {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cheque-type-subdescription {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 40px;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cheque-type-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.cheque-image-single {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.cheque-image-single .cheque-image {
    max-width: 600px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cheque-image-single .cheque-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.3);
}

.cheque-images-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.cheque-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cheque-image-label {
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.cheque-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cheque-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.3);
}

@media (max-width: 768px) {
    .cheque-type-section {
        padding: 50px 0;
    }

    .cheque-type-title {
        font-size: 26px;
    }

    .cheque-type-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .cheque-type-subdescription {
        font-size: 15px;
        padding: 0 20px;
    }

    .cheque-images-duo {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .cheque-image-single {
        padding: 0 20px;
    }

    .cheque-image-single .cheque-image,
    .cheque-image {
        max-width: 100%;
    }
}

