/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: #F8F5F1;
    color: #2F2F2F;
    line-height: 1.6;
    overflow-x: hidden;
}


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


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

header {

    position: sticky;

    top: 0;

    z-index: 9999;

    background: rgba(248,245,241,0.97);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid #E8DDD1;
}

/* LOGO */

.logo-link {

    display: flex;

    align-items: center;

    text-decoration: none;
}

.logo-image {

    height: 100px;

    width: auto;

    object-fit: contain;
}
/* NAVIGATION */

.nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 0;

    position: relative;
}


/* MENU DESKTOP */

.main-nav ul {

    display: flex;

    align-items: center;

    gap: 40px;

    list-style: none;

    padding: 0;

    margin: 0;
}

.main-nav a {
    position: relative;

    margin-left: 15px;

    text-decoration: none;

    color: #2F2F2F;

    font-weight: 500;

    transition: 0.3s ease;
}

.main-nav a::after{

    content:'';
  
    position:absolute;
  
    left:0;
    bottom:-6px;
  
    width:0%;
    height:2px;
  
    background:#003333;
  
    transition:0.3s ease;
  }
  .main-nav a:hover::after{
    width:100%;
  }
  .main-nav a:hover{color: #003333;}


/* =========================
   BOUTON BURGER
========================= */

.menu-toggle {

    display: none;

    flex-direction: column;

    justify-content: center;

    gap: 6px;

    background: none;

    border: none;

    cursor: pointer;

    z-index: 10001;
}

.menu-toggle span {

    width: 28px;

    height: 3px;

    background: #2F2F2F;

    border-radius: 20px;

    transition: 0.3s;
}

/******** MEDIA QUERY ********/

/* HERO OVERLAY */

.hero-overlay {
    min-height: 55vh;
    background-image:
        linear-gradient(
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.35)
        ),
        url('https://preprod.hebe-couture.fr/images/Oreillers-Decoratifs.jpg');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;
}

/* RESPONSIVE */


/* PAGE HERO */

.page-hero {

    background: #E8DDD1;

    padding: 60px 0 60px;

    text-align: center;
}

.page-hero h1 {

    font-size: 3rem;

    color: #B56E5A;

    margin-bottom: 30px;
}

.page-hero p {

    max-width: 700px;

    margin: auto;

    color: #555;

    font-size: 1.2rem;
}
.hero-overlay h1{

    color: white;
}
.hero-overlay p{
    color: white;
    margin-bottom: 30px;
}
/* =========================
   STORYTELLING
========================= */

.story-section {

    padding: 60px 0;

    background: white;
}

.story-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.story-subtitle {

    display: inline-block;

    color: #B56E5A;

    font-weight: 600;

    margin-bottom: 20px;

    letter-spacing: 1px;

    text-transform: uppercase;

    font-size: 0.9rem;
}

.story-text h2 {

    font-size: 3rem;

    color: #B56E5A;

    margin-bottom: 30px;

    line-height: 1.2;
}

.story-text p {

    margin-bottom: 20px;

    line-height: 1.9;

    color: #555;
}

.story-image img {

    width: 100%;

    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.btn-footer-story{
    grid-column-start: 1;
    grid-column-end: 3;
    text-align: center;
}
/* RESPONSIVE */


/* =========================
   INTRO
========================= */

.intro {

    padding: 100px 20px;

    text-align: center;

    max-width: 900px;
}

.intro-subtitle {

    display: inline-block;

    margin-bottom: 20px;

    color: #B56E5A;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 0.9rem;

    font-weight: 600;
}

.intro h2 {

    font-size: 3rem;

    color: #2F2F2F;

    margin-bottom: 35px;
}

.intro p {

    font-size: 1.1rem;

    line-height: 1.9;

    color: #555;

    margin-bottom: 20px;
}
.intro-signature {

    margin-top: 40px;

    font-style: italic;

    color: #B56E5A;
}

/* RESPONSIVE */


/* BUTTONS */
.btn {
    display: inline-block;
    background: #B56E5A;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}


.btn:hover {
    background: #9d5f4d;
}


.btn.light {
    background: white;
    color: #B56E5A;
}


/* INTRO */
.intro {
    padding: 80px 0;
    text-align: center;
}


.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #B56E5A;
}


/* SERVICES */
.services {
    padding: 80px 0;
}
/*
/* PRODUITS BAS DE PAGE INDEX */

.home-shop {
    padding: 6rem 0;
    background: #faf7f4;
}

.home-shop-header {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

.home-shop-kicker {
    display: inline-block;
    margin-bottom: .8rem;

    font-size: .8rem;
    font-weight: 600;

    letter-spacing: .15em;
    text-transform: uppercase;

    color: #92776b;
}

.home-shop-header h2 {
    margin-bottom: 1rem;
}

.home-shop-header p {
    color: #74645d;
    line-height: 1.7;
}

.home-shop-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 2rem;
}

.home-product-card {
    overflow: hidden;

    background: #fff;

    border:
        1px solid rgba(112, 86, 74, .12);

    border-radius: 24px;

    box-shadow:
        0 15px 40px
        rgba(73, 52, 44, .08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.home-product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 50px
        rgba(73, 52, 44, .13);
}

.home-product-image {
    position: relative;

    display: block;

    aspect-ratio: 4 / 3;

    overflow: hidden;
}

.home-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}

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

.home-product-category {
    position: absolute;

    left: 1rem;
    bottom: 1rem;

    padding:
        .45rem .8rem;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .9);

    color: #68534a;

    font-size: .75rem;
    font-weight: 600;
}

.home-product-content {
    padding: 1.5rem;
}

.home-product-content h3 {
    margin:
        0 0 .7rem;
}

.home-product-content p {
    margin: 0;

    color: #76665f;

    line-height: 1.6;
}

.home-product-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    margin-top: 1.5rem;
    padding-top: 1rem;

    border-top:
        1px solid #eee5e0;
}

.home-product-footer a {
    display: inline-flex;

    align-items: center;

    gap: .4rem;

    color: #82685c;

    font-weight: 600;

    text-decoration: none;
}

.home-product-footer a span {
    transition:
        transform .2s ease;
}

.home-product-footer a:hover span {
    transform: translateX(4px);
}

.home-shop-actions {
    display: flex;

    justify-content: center;

    margin-top: 3rem;
}

.home-shop-button {
    display: inline-flex;

    align-items: center;

    gap: .7rem;
}
/* =========================
   PROCESSUS
========================= */
.process-subtitle {

    display: inline-block;

    color: #B56E5A;

    font-weight: 600;

    margin-bottom: 20px;    

    letter-spacing: 1px;

    text-transform: uppercase;

    font-size: 0.9rem;
}
.process-section {

    padding: 110px 0;

    background: white;
}

.process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-top: 70px;
}


/* CARD */

.process-card {

    background: #F8F5F1;

    padding: 40px 30px;

    border-radius: 24px;

    text-align: center;

    transition: 0.3s;
}

.process-card:hover {

    transform: translateY(-5px);
}


/* NUMBER */

.process-number {

    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #B56E5A;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.4rem;

    font-weight: bold;
}


/* TEXT */

.process-card h3 {

    margin-bottom: 20px;

    color: #2F2F2F;
}

.process-card p {

    color: #555;

    line-height: 1.8;
}


/* RESPONSIVE */



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


.card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}


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


.card h3 {
    margin-bottom: 15px;
    color: #B56E5A;
}


/* CTA */
.cta {
    background: #B56E5A;
    color: white;
    padding: 80px 0;
    text-align: center;
}


.cta h2 {
    margin-bottom: 25px;
    font-size: 2.5rem;
}
/* =========================
   ENGAGEMENT HEBE
========================= */

.engagement-section {

    padding: 120px 0;

    background: white;
}


/* CONTENU */

.engagement-content {

    max-width: 850px;

    margin: auto;

    text-align: center;
}

.engagement-content h2 {

    font-size: 3rem;

    color: #2F2F2F;

    margin-bottom: 35px;
}

.engagement-content p {

    font-size: 1.1rem;

    line-height: 1.9;

    color: #555;

    margin-bottom: 25px;
}


/* GRID */

.engagement-grid {

    margin-top: 80px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


/* CARD */

.engagement-card {

    background: #F8F5F1;

    padding: 40px 30px;

    border-radius: 24px;

    text-align: center;

    transition: 0.3s;
}

.engagement-card:hover {

    transform: translateY(-5px);
}

.engagement-card h3 {

    margin-bottom: 20px;

    color: #B56E5A;
}

.engagement-card p {

    color: #555;

    line-height: 1.8;
}
/* ICONES ENGAGEMENT */

.engagement-icon {

    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(181,110,90,0.10);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;
}

/* RESPONSIVE */

/* =========================*****
   MENTIONS LEGALES HEBE COUTURE
=========================******** */
.card-mentions-legales{
    text-align: left;
}
.card-mentions-legales p{
    max-width: 900px;
    margin: auto;
    margin-bottom: 30px;
}

.card-mentions-legales h2{
    color: #815644;
}

/* FOOTER */

footer {
    margin-top: auto;
    background: #2F2F2F;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/******* STYLE SECTION DANS FOOTER *********/

/*************** VALEURS BOUTIQUE ***************/

.footer-values {
    margin-top: 90px;
    padding: 45px 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    background: #FAF6F1;
    border-top: 1px solid rgba(169, 99, 88, .12);
    border-bottom: 1px solid rgba(169, 99, 88, .12);
}

.footer-values article {
    text-align: center;
    padding: 10px 22px;
    border-right: 1px solid rgba(169, 99, 88, .18);
}

.footer-values article:last-child {
    border-right: none;
}

.footer-values span {
    display: block;
    font-size: 3rem;
    color: #A96358;
    margin-bottom: 14px;
}

.footer-values h3 {
    color: #3F3835;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .95rem;
    margin-bottom: 10px;
}

.footer-values p {
    color: #6B625D;
    line-height: 1.6;
}

.site-footer {
    background: #FFFDF9;
    color: #4A403A;
    padding: 70px 6% 30px;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 55px;
    border-top: 1px solid rgba(169, 99, 88, .10);
}

.footer-brand h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #A96358;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 320px;
    line-height: 1.7;
    color: #6B625D;
}

.footer-brand em {
    display: block;
    margin-top: 25px;
    color: #A96358;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

.footer-links h3 {
    color: #3F3835;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .9rem;
    margin-bottom: 22px;
}

.footer-links h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 1px;
    background: #A96358;
    margin-top: 12px;
}

.footer-links a {
    display: block;
    color: #6B625D;
    text-decoration: none;
    margin-bottom: 13px;
    transition: .2s;
}

.footer-links a:hover {
    color: #A96358;
    transform: translateX(4px);
}

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(169, 99, 88, .12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #7A6F68;
    font-size: .95rem;
}


/* CONTACT */

.contact-page {
    padding: 50px 0;
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #B56E5A;
}

.contact-form {
    max-width: 700px;
    margin: auto;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {

    width: 100%;
    padding: 16px;

    border: 1px solid #ddd;
    border-radius: 12px;

    font-size: 1rem;
    background: white;
}

.contact-form textarea {
    resize: vertical;
}
.hidden-field{
    display: none;
}
.success-message p{
    color:green;
    font-weight:600;
    text-align: center;
    margin:auto;
}
/* =========================
   GOOGLE MAPS
========================= */

.map-section {

    background: #F8F5F1;
}

.map-container {

    margin-top: 50px;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-container iframe {

    display: block;
}

/* SERVICES */

.service-section {
    padding: 100px 0;
}

.alt-bg {
    background: #EFE7DE;
}

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

.reverse {
    direction: rtl;
}

.reverse .service-text {
    direction: ltr;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #B56E5A;
}

.service-text p {
    margin-bottom: 25px;
}

.service-text ul {
    padding-left: 20px;
}

.service-text li {
    margin-bottom: 12px;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}


/* TARIFS */

.tarifs {

    padding: 100px 0;

    background: #F8F5F1;
}

.tarifs h2 {

    text-align: center;

    font-size: 3rem;

    color: #B56E5A;

    margin-bottom: 20px;
}

.tarifs-intro {

    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;

    color: #555;

    line-height: 1.8;
}


/* CATEGORIES */

.tarif-category {

    background: white;

    border-radius: 20px;

    padding: 40px;

    margin-bottom: 40px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.tarif-category h3 {

    color: #B56E5A;

    font-size: 2rem;

    margin-bottom: 30px;

    padding-bottom: 15px;

    border-bottom: 1px solid #E8DDD1;
}


/* TABLE */

.tarif-table {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.tarif-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding-bottom: 12px;

    border-bottom: 1px dashed #D8CABC;
}

.tarif-row span {

    color: #2F2F2F;
}

.tarif-row strong {

    color: #B56E5A;

    white-space: nowrap;
}


/* RESPONSIVE */

/* TELECHARGEMENT TARIFS */

.tarif-download {

    margin-top: 60px;

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

    margin-top: 25px;

    text-align: center;

    font-size: 0.95rem;

    color: #777;
}

/* RESPONSIVE */

/* FILTRES */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 50px;
    margin-top: 5px;
}

.filter-btn {
    background: white;

    border: 1px solid #ddd;

    padding: 12px 24px;

    border-radius: 30px;

    cursor: pointer;

    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {

    background: #B56E5A;
    color: white;
}


/* GALERIE */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

.gallery-item {
    overflow: hidden;

    border-radius: 20px;

    cursor: pointer;

    position: relative;
}

.gallery-item img {

    width: 100%;
    height: 320px;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* LIGHTBOX */

.lightbox {

    display: none;

    position: fixed;

    z-index: 9999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;
}

.lightbox-content {

    max-width: 90%;
    max-height: 85%;

    border-radius: 12px;
}

.close-lightbox {

    position: absolute;

    top: 30px;
    right: 40px;

    color: white;

    font-size: 3rem;

    cursor: pointer;
}

/* TEXTE GALERIE */

.gallery-text {
    padding: 80px 0 120px;
    text-align: center;
}

.gallery-text h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #B56E5A;
}

.gallery-text p {
    max-width: 800px;
    margin: auto;
    color: #555;
    line-height: 1.8;
}


/* RESPONSIVE */

/* ABOUT */

.about-section {
    padding: 100px 0;
}

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

.about-image img {
    width: 100%;
    border-radius: 20px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.about-text h2 {
    font-size: 2.5rem;
    color: #B56E5A;

    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}


/* VALEURS */

.values-section {
    padding: 100px 0;

    background: #EFE7DE;

    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;

    margin-bottom: 60px;

    color: #B56E5A;
}

.values-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;
}

.value-card {
    background: white;

    padding: 40px 30px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-card h3 {
    margin-bottom: 20px;

    color: #B56E5A;
}


/* CITATION */

.about-quote {
    padding: 100px 0;

    text-align: center;
}

.about-quote blockquote {
    max-width: 900px;

    margin: auto;

    font-size: 2rem;

    line-height: 1.6;

    color: #7A6A5F;

    font-style: italic;
}


/* RESPONSIVE */

/* AVIS */

.reviews-summary {
    padding: 80px 0 40px;
    text-align: center;
}

.summary-box {
    background: #EFE7DE;
    display: inline-block;

    padding: 40px 60px;

    border-radius: 20px;
}

.summary-box h2 {
    font-size: 3rem;
    color: #B56E5A;
}
/* SECTION Laisser un avis */

.leave-review {
    padding: 80px 0;
    text-align: center;
}

.leave-review h2 {
    font-size: 2.2rem;
    color: #B56E5A;
    margin-bottom: 15px;
}

.leave-review p {
    margin-bottom: 25px;
    color: #555;
}

/* GRID AVIS */

.reviews {
    padding: 80px 0 120px;
}

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}


/* CARDS */

.review-card {
    background: white;

    padding: 30px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);

    transition: 0.3s;
}

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

.review-card .stars {
    color: #B56E5A;

    margin-bottom: 15px;

    font-size: 1.2rem;
}

.review-card p {
    margin-bottom: 20px;

    line-height: 1.6;
}

.review-card span {
    font-weight: bold;

    color: #7A6A5F;
}
/* =========================
   HISTOIRE ATELIER
========================= */

.atelier-story {

    padding: 110px 0;

    background: #F8F5F1;
}

.atelier-story-content {

    max-width: 850px;

    margin: auto;

    text-align: center;
}

.atelier-story-content h2 {

    font-size: 3rem;

    color: #2F2F2F;

    margin-bottom: 35px;
}

.atelier-story-content p {

    font-size: 1.1rem;

    line-height: 1.9;

    color: #555;

    margin-bottom: 25px;
}


/* SIGNATURE */

.story-signature {

    margin-top: 40px;

    font-style: italic;

    color: #B56E5A;

    font-size: 1.15rem;
}


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

@media screen and (max-width: 900px) {
    .logo-image {
        height: 80px;
    }

    .menu-toggle {
        display: flex;
    }

    /* MENU MOBILE */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        padding-top: 120px;
        background: #F8F5F1;
        box-shadow: -5px 0 20px rgba(0,0,0,0.08);
        transition: 0.4s ease;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .main-nav li {
        list-style: none;
    }

    .main-nav a {
        font-size: 1.1rem;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .story-text h2,
    .engagement-content h2 {
        font-size: 2.3rem;
    }

    .home-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .engagement-grid,
    .service-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-values,
    .site-footer,
    .shop-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-values article {
        border-right: none;
    }

    .reverse {
        direction: ltr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-quote blockquote {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-overlay {
        min-height: 40vh;
    }

    .intro {
        padding: 70px 20px;
    }

    .intro h2,
    .tarifs h2,
    .atelier-story-content h2 {
        font-size: 2.2rem;
    }

    .intro p,
    .atelier-story-content p {
        font-size: 1rem;
    }

    .home-shop {
        padding: 4rem 0;
    }

    .home-shop-grid,
    .process-grid,
    .footer-values,
    .site-footer,
    .shop-values {
        grid-template-columns: 1fr;
    }

    .home-product-card {
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
    }

    .footer-bottom,
    .tarif-row {
        flex-direction: column;
    }

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

    .shop-values {
        padding: 40px 25px;
    }

    .tarif-category {
        padding: 25px;
    }

    .tarif-row {
        align-items: flex-start;
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-text h2 {
        font-size: 2rem;
    }

    .close-lightbox {
        right: 20px;
    }

    .atelier-story {
        padding: 80px 20px;
    }
}
