.art_sushi_image_container,
.art_sushi_content {
    /* fallback for JS-disabled: visible by défaut */
}

@media (max-width: 768px) {
    .art_sushi_image_container,
    .art_sushi_content {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/****** Header Banner Information **********/


/* .marquee-rtl {
    width: 100%;
    margin: 0;
    border: none;
    overflow: hidden;
    padding: 9px;
    background: #222248;
}

.marquee-rtl>div {
    display: inline-block;
    padding-left: 100vw;
    white-space: nowrap;
    font-size: 1.2em;
    font-weight: bold;
    color: rgb(255 255 255);
    animation: defilement-rtl 45s linear infinite;
    transition: animation 0.2s ease-out;
}

.marquee-rtl .separator {
    display: inline-block;
    margin: 0 2em;
    font-weight: normal;
}

@keyframes defilement-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee-rtl:hover>div {
    animation-play-state: paused;
} */




.marquee-rtl {
    width: 100%;
    margin: 0;
    border: none;
    overflow: hidden;
    padding: 9px;
    background: #222248;
    text-align: center;
}

.marquee-rtl>div {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    color: rgb(255 255 255);
}

.header-banner{
    width: 100%;
}

.marquee-rtl .separator {
    display: inline-block;
    margin: 0 2em;
    font-weight: normal;
}

@media (max-width:768px) {

    .marquee-rtl>div {
        font-size: 12px;
    }
    
}



/******** Presentation div **********/


.prst-resto-presentation-section {
    padding: 8%;
    width: 100vw;
    position: relative;
    /* margin-bottom: 3%; */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.prst-resto-container {
    max-width: 100%;
    /* margin: 0 auto; */
    /* padding: 0 40px; */
}

.prst-resto-row {
    display: flex;
    align-items: center;
    /* gap: 60px; */
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.prst-resto-row.prst-resto-animate {
    opacity: 1;
    transform: translateY(0);
}

.prst-resto-row:last-child {
    margin-bottom: 0;
}

.prst-resto-col-img,
.prst-resto-col-content {
    flex: 1;
}

.prst-resto-col-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.prst-resto-col-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.prst-resto-col-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prst-resto-col-img:hover img {
    transform: scale(1.1);
}

.prst-resto-col-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(238, 90, 111, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.prst-resto-col-img:hover::before {
    opacity: 1;
}

.prst-resto-col-content {
    text-align: center;
    padding: 40px;
}

.prst-resto-logo-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(238, 90, 111, 0.4);
    animation: prst-resto-float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.prst-resto-logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes prst-resto-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.prst-resto-logo-icon svg {
    width: 70px;
    height: 70px;
    fill: white;
}

.prst-resto-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff6b6b;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.2s;
}

@keyframes prst-resto-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.3;
    opacity: 0;
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.4s;
}

p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.9;
    opacity: 0;
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.6s;
}

p:last-child {
    animation-delay: 0.8s;
}

p b {
    color: #2c3e50;
    font-weight: 700;
    background: linear-gradient(120deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prst-resto-row.prst-resto-reverse {
    flex-direction: row-reverse;
}

/* Réinitialiser les animations quand visible */
.prst-resto-row.prst-resto-animate .prst-resto-subtitle {
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.2s;
}

.prst-resto-row.prst-resto-animate h2 {
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.4s;
}

.prst-resto-row.prst-resto-animate p:first-of-type {
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.6s;
}

.prst-resto-row.prst-resto-animate p:last-of-type {
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.8s;
}

/* Effet de particules décoratif */
.prst-resto-col-content::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 968px) {

    .prst-resto-row,
    .prst-resto-row.prst-resto-reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .prst-resto-col-img img {
        height: 400px;
    }

    h2 {
        font-size: 32px;
    }

    .prst-resto-logo-icon {
        width: 120px;
        height: 120px;
    }

    .prst-resto-logo-icon svg {
        width: 60px;
        height: 60px;
    }

    .prst-resto-container {
        padding: 0 20px;
    }

    .prst-resto-presentation-section {
        padding: 60px 0;
    }

    p {
        font-size: 16px;
    }
}

/* Thèmes de couleurs */
.prst-resto-theme-pizza .prst-resto-logo-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.prst-resto-theme-pizza .prst-resto-subtitle,
.prst-resto-theme-pizza p b {
    background: linear-gradient(120deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prst-resto-theme-sushi .prst-resto-logo-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.prst-resto-theme-sushi .prst-resto-subtitle,
.prst-resto-theme-sushi p b {
    background: linear-gradient(120deg, #e74c3c 0%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prst-resto-theme-burger .prst-resto-logo-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.prst-resto-theme-burger .prst-resto-subtitle,
.prst-resto-theme-burger p b {
    background: linear-gradient(120deg, #f39c12 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prst-resto-theme-generic .prst-resto-logo-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.prst-resto-theme-generic .prst-resto-subtitle,
.prst-resto-theme-generic p b {
    background: linear-gradient(120deg, #3498db 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/*********** Footer Before Home  ***********/


.container_qualite {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
    padding: 3%;
    margin-top: 3%;
}

.container_qualite_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title_qualite {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 36px;
    letter-spacing: 6px;
    margin: 0 0 30px 0;
}

.description_qualite {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 50px 0;
}

.list_qualite_points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point_qualite {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.container_qualite p {
    color: black;
}

.point_qualite::before {
    content: "✓";
    color: #222248;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border: 2px solid #222248;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.image_qualite {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.container_qualite_image {
    width: 45%;
    flex-shrink: 0;
    display: flex;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .container_qualite {
        gap: 40px;
    }

    .title_qualite {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .description_qualite {
        font-size: 16px;
    }

    .point_qualite {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .container_qualite {
        flex-direction: column;
        gap: 40px;
    }

    .container_qualite_image {
        width: 100%;
        max-height: 400px;
    }

    .title_qualite {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .description_qualite {
        margin-bottom: 30px;
    }

    .list_qualite_points {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .title_qualite {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .description_qualite {
        font-size: 15px;
        line-height: 1.6;
    }

    .point_qualite {
        font-size: 15px;
    }

    .point_qualite::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-right: 15px;
    }

    .container_qualite_image {
        max-height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .title_qualite {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .description_qualite {
        font-size: 14px;
    }

    .point_qualite {
        font-size: 14px;
    }

    .list_qualite_points {
        gap: 15px;
    }

    .container_qualite_image {
        max-height: 250px;
    }
}

@media (min-width: 768px) {

    .container_qualite {
        padding: 36px 153px 53px 173px;

    }

}

.container_qualite {
    display: none;
}

.page-index .container_qualite {
    display: flex;
}


/*** Div latest news home page ***/

/* Définition des variables de couleur pour un changement facile */
:root {
    --art-sushi-primary-text-color: #000000;
    --art-sushi-secondary-text-color: #555555;
    /* Estimation pour le texte du corps */
    --art-sushi-bullet-color: #8A2BE2;
    /* Estimation d'une couleur pour les puces, basée sur le PDF/Capture */
    --art-sushi-font-family: Arial, sans-serif;
    /* À ajuster si la police réelle est connue */
}

/* Conteneur principal de la section */
.art_sushi_about_section {
    display: flex;
    max-width: 72%;
    /* Largeur maximale pour le contenu centré */
    margin: 40px auto;
    /* Centrage et espacement vertical */
    padding: 20px;
    gap: 40px;
    /* Espace entre l'image et le contenu */
}

/* Conteneur de l'image pour gérer sa largeur */

.art_sushi_image_container {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-80px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.art_sushi_image_container.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Style de l'image */
.art_sushi_chef_image {
    width: 100%;
    height: auto;
    display: block;
    /* Supprime l'espace sous l'image */
    object-fit: cover;
    /* Assure que l'image couvre le conteneur */
    /* L'image est en noir et blanc dans la maquette, mais on peut le faire en CSS si l'image source est couleur */
    filter: grayscale(100%);
}

/* Contenu textuel */

.art_sushi_content {
    flex: 1;
    padding-top: 20px;
    font-family: var(--art-sushi-font-family);
    opacity: 0;
    transform: translateX(80px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.art_sushi_content.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Petit titre "À PROPOS" */
.art_sushi_pre_title {
    font-size: 0.8rem;
    font-weight: 500;
    color: red;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* Titre principal "L'Art du Sushi Japonais" */
.art_sushi_title {
    font-size: 2rem;
    font-weight: 500;
    /* Le titre semble avoir un poids de police normal/régulier */
    color: var(--art-sushi-primary-text-color);
    margin-top: 0;
    margin-bottom: 25px;
}

/* Paragraphes de description */
.art_sushi_description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--art-sushi-secondary-text-color);
    margin-bottom: 54px;
}

/* Liste des fonctionnalités (puces) */
.art_sushi_features_list {
    list-style: none;
    /* Supprime les puces par défaut */
    padding: 0;
    margin-top: 30px;
}

.art_sushi_feature_item {
    font-size: 1rem;
    line-height: 2.5;
    /* Espacement entre les éléments de la liste */
    color: var(--art-sushi-secondary-text-color);
    position: relative;
    padding-left: 20px;
    /* Espace pour la puce personnalisée */
}

/* Création de la puce personnalisée (le cercle plein) */
.art_sushi_feature_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    /* Taille du cercle */
    height: 8px;
    /* Taille du cercle */
    background-color: #83B356;
    border-radius: 50%;
}

/* --- Rendre la section responsive --- */
@media (max-width: 768px) {
    .art_sushi_about_section {
        flex-direction: column;
        /* Empile l'image et le contenu sur petits écrans */
        gap: 20px;
        padding: 10px;
    }

    .art_sushi_image_container {
        flex: auto;
        max-width: 100%;
        /* L'image prend toute la largeur */
    }

    .art_sushi_title {
        font-size: 1.5rem;
        /* Réduire la taille du titre */
    }

    .art_sushi_chef_image {
        width: 90%;
    }

    .art_sushi_image_container {
        justify-items: center;
    }
}



/* --- Variables et Styles de Base --- */
:root {
    --art-sushi-dark-bg: #191942;
    /* Couleur de fond bleu foncé/violet de la maquette */
    --art-sushi-white: #ffffff;
    --art-sushi-red: #2b2b59;
    /* Rouge pour le VENEZ NOUS VOIR */
    --art-sushi-text-dark: #333333;
    --art-sushi-text-light: #666666;
    --art-sushi-icon-color: #8A2BE2;
    /* Couleur pour les icônes (estimée) */
    --art-sushi-font-family: Arial, sans-serif;
}

/* Conteneur principal englobant toute la section avec le fond foncé */
.art_sushi_visit_section {
    background-color: var(--art-sushi-dark-bg);
    padding: 30px 0;
    font-family: var(--art-sushi-font-family);
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* Conteneur interne pour limiter la largeur du contenu (comme sur la capture) */
.art_sushi_visit_section>* {
    max-width: 1200px;
}

/* --- Bloc d'Information (Gauche) --- */
.art_sushi_contact_info_box {
    background-color: var(--art-sushi-white);
    flex: 1;
    /* Prend la moitié de l'espace sur les grands écrans */
    max-width: 450px;
    /* Limite sa taille pour la structure deux colonnes */
    padding: 40px;
}

.art_sushi_pre_title_visit {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--art-sushi-red);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.art_sushi_brand_title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--art-sushi-text-dark);
    margin-top: 0;
    margin-bottom: 30px;
}

/* Styles pour chaque groupe de détails (Adresse, Horaires, Contact) */
.art_sushi_detail_group {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    /* Aligne le haut du texte avec l'icône */
}

.art_sushi_detail_group .art_sushi_icon_wrapper {
    margin-right: 20px;
}

/* Icônes avec rond rouge et SVG inline */
.art_sushi_icon_wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F0F0FA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.art_sushi_icon_wrapper svg {
    display: block;
}

/* Styles pour les titres des détails (ADRESSE, CONTACT, JOURS D'OUVERTURE) */
.art_sushi_detail_title {
    font-size: 0.9rem;
    font-weight: bold;
    color: #222248;
    margin: 0 0 5px 0;
}

.art_sushi_detail_text {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--art-sushi-text-light);
    margin: 0;
}


/* --- Bloc Image (Droite) --- */
.art_sushi_image_map_container {
    flex: 1;
    /* Prend la moitié de l'espace sur les grands écrans */
    position: relative;
    max-width: 750px;
    /* Limite sa taille pour la structure deux colonnes */
    min-height: 300px;
    /* Assure une hauteur minimale */
}

.art_sushi_plate_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    /* L'image est en N&B */
}

/* Bouton VOIR SUR LA CARTE */
.art_sushi_map_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--art-sushi-white);
    color: var(--art-sushi-text-dark);
    padding: 20px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    gap: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
    flex-direction: column;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.art_sushi_map_button:hover {
    background-color: #f0f0f0;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Afficher uniquement le bouton desktop sur grand écran */
.art_sushi_map_button_desktop {
    display: flex;
}

.art_sushi_map_button_mobile {
    display: none;
}

/* Conteneur de la carte Google Maps */
.art_sushi_map_iframe_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.art_sushi_map_iframe_container iframe {
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.art_sushi_map_iframe_container iframe:hover {
    transform: scale(1.01);
}

/* État visible de la carte */
.art_sushi_map_iframe_container.art_sushi_map_visible {
    max-height: 600px;
    opacity: 1;
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    animation: slideDownFadeIn 0.6s ease forwards;
}

@keyframes slideDownFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icône de Pin dans le bouton */
.art_sushi_map_pin {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%23000000" d="M215.7 499.2C208.5 507.4 199.1 512 189.2 512c-9.9 0-19.3-4.6-26.5-12.8L20.5 321.8c-10.7-12.6-16.5-27.7-16.5-43.2C4 163.7 93.1 8 189.2 8s185.2 155.7 185.2 270.6c0 15.5-5.8 30.7-16.5 43.2L215.7 499.2zM189.2 256c-27 0-49-22-49-49s22-49 49-49s49 22 49 49s-22 49-49 49z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* --- Responsive Design (Empilement sur mobile) --- */
@media (max-width: 992px) {
    .art_sushi_visit_section {
        flex-direction: column;
        /* Passage en colonne sur les écrans plus petits */
        padding: 0;
    }

    .art_sushi_brand_title {
        color: white;

    }

    .art_sushi_detail_group {
        display: block;
        justify-items: center;
        text-align: center;
    }

    .art_sushi_detail_text {
        color: white;
    }

    .art_sushi_contact_info_box {
        max-width: none;
        /* Prend toute la largeur */
        padding: 30px 20px;
        background-color: #222248;
        text-align: center;
    }

    .art_sushi_image_map_container {
        max-width: none;
        /* Prend toute la largeur */
        min-height: 250px;
        /* Réduit la hauteur de l'image sur mobile */
    }

    /* Sur mobile/tablette : afficher le lien, masquer le bouton et la carte */
    .art_sushi_map_button_desktop {
        display: none !important;
    }

    .art_sushi_map_button_mobile {
        display: flex !important;
    }

    .art_sushi_map_iframe_container {
        display: none !important;
    }
}


@media (max-width:990px) {

    section.art_sushi_about_section {
        display: block;
        justify-items: center;
    }


    .art_sushi_content {
        padding-right: 2%;
        padding-left: 6%;
    }


}





/************* Page venir nous voir *************/



:root {
    --ms-primary: #222248;
    --ms-primary-light: #2e2e62;
    --ms-accent: #c8a96e;
    --ms-accent-light: #dfc59a;
    --ms-bg: #f7f5f2;
    --ms-white: #ffffff;
    --ms-text: #1a1a2e;
    --ms-text-light: #5a5a7a;
    --ms-border: rgba(34, 34, 72, 0.1);
}

/* ── Page Header ── */
.ms-page-header {
    background: var(--ms-primary);
    padding: 64px 40px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ms-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(200, 169, 110, .18) 0%, transparent 70%);
    pointer-events: none;
}

.ms-header-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ms-accent);
    margin-bottom: 16px;
    display: block;
}

.ms-page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--ms-white);
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0;
}

.ms-page-header h1 em {
    font-style: italic;
    color: var(--ms-accent-light);
}

.ms-header-rule {
    width: 48px;
    height: 1px;
    background: var(--ms-accent);
    margin: 24px auto 0;
    opacity: .6;
}

/* ── Container ── */
.ms-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 36px;
}

/* ── Store Section ── */
.ms-store-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 1px 0 80px;
    background: var(--ms-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 60px rgba(34, 34, 72, .09), 0 2px 12px rgba(34, 34, 72, .05);
    animation: ms-fadeUp .6s ease both;
    animation-delay: .1s;
}

/* ── Map ── */
.ms-map-wrapper {
    position: relative;
    min-height: 480px;
}

.ms-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
    filter: contrast(1.02) saturate(0.9);
}

/* ── Info Panel ── */
.ms-info-panel {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ms-white);
    border-left: 1px solid var(--ms-border);
}

.ms-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 34, 72, .06);
    border-radius: 2px;
    padding: 6px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ms-primary);
    margin-bottom: 24px;
    width: fit-content;
}

.ms-store-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--ms-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.ms-store-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--ms-primary);
    line-height: 1.15;
    margin-bottom: 6px;
}

.ms-store-city {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ms-text-light);
    margin-bottom: 36px;
}

.ms-divider {
    width: 36px;
    height: 2px;
    background: var(--ms-accent);
    margin-bottom: 36px;
}

/* ── Info Grid ── */
.ms-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ms-info-block h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ms-accent);
    margin-bottom: 14px;
}

.ms-info-block address {
    font-style: normal;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--ms-text-light);
}

.ms-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--ms-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 16px;
    transition: color .2s;
}

.ms-phone-link:hover {
    color: var(--ms-accent);
}

.ms-phone-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ── Horaires ── */
.ms-horaires-block {
    margin-top: 32px;
}

.ms-horaires-block h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ms-accent);
    margin-bottom: 14px;
}

.ms-horaire-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--ms-border);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
}

.ms-horaire-row:last-child {
    border-bottom: none;
}

.ms-horaire-day {
    min-width: 110px;
    font-weight: 500;
    color: var(--ms-text);
    font-size: 0.82rem;
}

.ms-horaire-time {
    color: var(--ms-text-light);
    font-size: 0.85rem;
}

.ms-horaire-closed {
    color: #c0392b;
    font-size: 0.82rem;
    font-weight: 500;
}

/* ── Services ── */
.ms-services-block {
    margin-top: 32px;
}

.ms-services-block h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ms-accent);
    margin-bottom: 14px;
}

.ms-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ms-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid var(--ms-border);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--ms-primary);
    background: rgba(34, 34, 72, .03);
}

.ms-service-tag svg {
    width: 13px;
    height: 13px;
    stroke: var(--ms-accent);
    fill: none;
    flex-shrink: 0;
}

/* ── Animation ── */
@keyframes ms-fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .ms-store-section {
        grid-template-columns: 1fr;
        margin: 32px 0 48px;
    }

    .ms-map-wrapper,
    .ms-map-wrapper iframe {
        min-height: 300px;
        height: 300px;
    }

    .ms-info-panel {
        padding: 36px 28px;
        border-left: none;
        border-top: 1px solid var(--ms-border);
    }

    .ms-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ms-page-header {
        padding: 48px 24px 36px;
    }
}


.cms-id-6 #wrapper .container {
    width: 100%;
}


.cms-id-6 .breadcrumb {
    display: none;
}

.cms-id-6 h1{
    margin-top: 3%;
}

#search_filter_toggler {
    color: white;
    background-color: #222248;
}

@media (max-width: 968px) {
    .art_sushi_pre_title_visit {
        color: white;
    }
}