/* CSS principal approximatif basé sur la config Tailwind du projet Lovable */

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

/* Variables de couleur alignées sur src/index.css du projet Lovable */
:root {
  --background: 30 6% 12%;
  --foreground: 40 20% 90%;
  --texte: var(--foreground);

  --card: 30 8% 15%;
  --card-foreground: 40 20% 90%;

  --popover: 30 8% 15%;
  --popover-foreground: 40 20% 90%;

  --primary: 35 30% 45%;
  --primary-foreground: 40 20% 95%;

  --secondary: 30 6% 18%;
  --secondary-foreground: 40 20% 90%;

  --muted: 30 6% 20%;
  --muted-foreground: 40 10% 60%;

  --accent: 35 40% 50%;
  --accent-foreground: 40 20% 95%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 35 15% 25%;
  --input: 35 15% 25%;
  --ring: 35 40% 50%;

  --radius: 0.5rem;

  /* Couleurs additionnelles */
  --beige: 35 25% 35%;
  --beige-light: 35 30% 85%;
  --gold: 40 60% 50%;
  --cream: 40 30% 92%;
  --dark-brown: 25 20% 8%;

  --sidebar-background: 30 6% 12%;
  --sidebar-foreground: 40 20% 90%;
  --sidebar-primary: 35 30% 45%;
  --sidebar-primary-foreground: 40 20% 95%;
  --sidebar-accent: 35 40% 50%;
  --sidebar-accent-foreground: 40 20% 95%;
  --sidebar-border: 35 15% 25%;
  --sidebar-ring: 35 40% 50%;
}

/* Trustindex/Google widget overrides */
.ti-widget,
.ti-review-widget,
.ti-widget-container,
.trustindex-widget,
.trustindex-google-reviews,
.ti-review-container,
.ti-box,
.ti-wrapper,
.ti-bg {
  border-color: #B3884D !important;
  border-radius: 0 !important;
}

.ti-widget, .ti-widget-container, .ti-review-item, .ti-item, .ti-content, .ti-header, .ti-footer {
  border-color: #B3884D !important;
  border-radius: 0 !important;
}

.ti-widget-container .ti-box, .ti-widget-container .ti-item, .ti-widget-container .ti-content {
  box-shadow: none !important;
  border-color: #B3884D !important;
  border-radius: 0 !important;
}

body {
  margin: 0;
  padding: 0;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: hsl(var(--accent));
}

/* Utilitaires basiques qui imitent Tailwind utilisé dans les templates */

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-between {
  justify-content: space-between;
}

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

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.uppercase {
  text-transform: uppercase;
}

.font-semibold {
  font-weight: 600;
}

.font-cormorant {
  font-family: 'Cormorant Garamond', serif;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-\[0\.1em\] {
  letter-spacing: 0.1em;
}

.tracking-\[0\.15em\] {
  letter-spacing: 0.15em;
}

.tracking-\[0\.25em\] {
  letter-spacing: 0.25em;
}

.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}

.bg-background {
  background-color: hsl(var(--background));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-card {
  background-color: hsl(var(--card));
}

.bg-black\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-foreground\/60 {
  color: rgba(249, 245, 235, 0.6);
}

.text-foreground\/50 {
  color: rgba(249, 245, 235, 0.5);
}

.text-foreground\/70 {
  color: rgba(249, 245, 235, 0.7);
}

.text-accent {
  color: hsl(var(--accent));
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-border {
  border-color: hsl(var(--border));
}

.border-foreground\/40 {
  border-color: rgba(249, 245, 235, 0.4);
}

/* Contact form (Fluent Forms #5) */
.jsr-contact {
  background: hsl(var(--secondary));
  color: hsl(var(--texte));
  border: 1px solid hsl(var(--border));
  border-radius: 6px;
  padding: 150px 24px 24px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  font-family: 'Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
.jsr-contact::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background: hsl(var(--accent));
  border-radius:2px;
}
.jsr-contact::after{
  content:"CONTACT";
  position:absolute;
  top:50px;
  left:0;
  right:0;
  text-align:center;
  font-size: calc(1.6rem + 10px);
  line-height: 1.1;
  letter-spacing:.15em;
  color:hsl(var(--accent));
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
}
.jsr-contact .ff-form{
  margin-top: 60px;
}
.jsr-contact .ff-form:before{ content:none; display:none; }
.jsr-contact .ff-form:after{ content:none; display:none; }
.jsr-contact .ff-el-group{
  margin-bottom: 20px;
}
.jsr-contact .ff-el-group label{
  display:block;
  margin-bottom:6px;
  color: rgba(249,245,235,.85);
  font-size: .9rem;
}
.jsr-contact .ff-el-form-control{
  width:100%;
  background: transparent;
  color: hsl(var(--texte));
  border: 1px solid hsl(var(--border) / 0.6);
  border-radius: 4px;
  height: 44px;
  padding: 0 12px;
}
.jsr-contact .ff-el-form-control::placeholder{
  color: rgba(249,245,235,.6);
}
.jsr-contact textarea.ff-el-form-control{
  min-height: 120px;
  padding: 10px 12px;
}
.jsr-contact .ff-submit-btn, 
.jsr-contact button[type="submit"]{
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: none;
  background: #A57D48;
  color: #fff;
  cursor: pointer;
  transform: none;
  transition: background-color .15s ease;
}
.jsr-contact .ff-submit-btn:hover,
.jsr-contact button[type="submit"]:hover{
  background: #A57D48;
}
@media (min-width: 720px){
  .jsr-contact .ff-form .ff-el-group{
    display:inline-block;
    vertical-align:top;
    width: calc(50% - 10px);
    margin-right: 10px;
  }
  .jsr-contact .ff-form .ff-el-group:nth-child(2n){
    margin-right: 0;
  }
  .jsr-contact .ff-form .ff-el-group:nth-child(5){
    display:block;
    width: 100%;
    margin-right: 0;
  }
  .jsr-contact .ff-form .ff_submit_wrap{
    text-align: center;
    margin-top: 8px;
  }
}

.aspect-\[4\/3\] {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
}

.aspect-\[4\/3\] > img,
.aspect-\[4\/3\] > picture {
  position: absolute;
  inset: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.grayscale {
  filter: grayscale(1);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.grid {
  display: grid;
}

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

.gap-10 {
  gap: 2.5rem;
}

.gap-16 {
  gap: 4rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-lg {
  max-width: 32rem;
}

.inline-block {
  display: inline-block;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.transition-colors {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
}

.hover\:bg-foreground:hover {
  background-color: var(--foreground);
}

.hover\:text-background:hover {
  color: var(--background);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.text-foreground\/80 {
  color: rgba(249, 245, 235, 0.8);
}

.leading-relaxed {
  line-height: 1.7;
}

.italic {
  font-style: italic;
}

/* ---------- Header & navigation JS Restauration ---------- */

.elementor .elementor-heading-title {
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--accent));
}

.elementor .elementor-widget-text-editor {
  color: rgba(249, 245, 235, 0.6);
  line-height: 1.7;
  font-size: 0.875rem;
}

.elementor .elementor-widget-button .elementor-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(249, 245, 235, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--foreground));
  background: transparent;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
}

.elementor .elementor-widget-button .elementor-button:hover {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
}

.jsr-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: hsl(var(--background));
  border-bottom: 1px solid var(--border);
  padding-top: 6px;
}

/* Pas de décalage spécifique en preview: on laisse WP gérer la barre d’admin */

.jsr-header.is-stuck {
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.jsr-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jsr-nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.jsr-nav-left,
.jsr-nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.jsr-nav-left .elementor-shortcode,
.jsr-nav-right .elementor-shortcode {
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  width: 100% !important;
}

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

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

.jsr-nav-link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249, 245, 235, 0.7);
  text-decoration: none;
  transition: color 150ms ease-in-out;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.jsr-nav-link:hover {
  color: var(--accent);
}

.jsr-nav-link--has-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.jsr-nav-chevron {
  font-size: 0.55rem;
}

.jsr-nav-group {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
}

.jsr-submenu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  margin-top: 0.5rem !important;
  width: 12rem !important;
  background-color: rgba(18, 15, 12, 0.95) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0.5rem !important;
  padding: 0.25rem 0 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(4px) !important;
  transition:
    opacity 150ms ease-out,
    transform 150ms ease-out,
    visibility 150ms ease-out;
  z-index: 50 !important;
}

.jsr-header .jsr-submenu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  margin-top: 0.5rem !important;
  width: 12rem !important;
  background-color: rgba(18, 15, 12, 0.95) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0.5rem !important;
  padding: 0.25rem 0 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(4px) !important;
}

.jsr-nav-group--open > .jsr-submenu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.jsr-nav-group--open > .jsr-submenu.jsr-submenu--nested {
  transform: translateX(0) !important;
}

/* Hover CSS fallback pour ouverture simple même sans JS */
.jsr-nav-group:hover > .jsr-submenu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.jsr-submenu-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249, 245, 235, 0.7);
  text-decoration: none;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out;
}

.jsr-submenu-link:hover {
  color: var(--accent);
  background-color: var(--secondary);
}

.jsr-nav-group--nested {
  position: relative !important;
  display: block !important; /* Pour que le sous-menu parent reste en bloc */
  width: 100% !important;
}

.jsr-submenu-link--has-sub {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 1rem !important;
}

.jsr-submenu-link--has-sub .jsr-nav-chevron {
  transform: rotate(-90deg); /* Oriente la flèche vers la droite sur desktop */
  font-size: 0.5rem;
  opacity: 0.8;
}

/* Forcer la position à droite avec une spécificité plus élevée */
.jsr-header .jsr-submenu.jsr-submenu--nested {
  top: -0.25rem !important;
  left: 100% !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateX(4px) !important;
  transition: opacity 150ms ease-out, transform 150ms ease-out, visibility 150ms ease-out !important;
}

.jsr-nav-group--nested:hover > .jsr-submenu.jsr-submenu--nested {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
}

.jsr-logo-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
  text-decoration: none;
  transition: background-color 150ms ease-in-out, transform 0.15s ease-in-out;
  flex-shrink: 0;
}

.jsr-logo-circle:hover {
  background-color: rgba(187, 153, 98, 0.15);
  transform: scale(1.45);
}

.jsr-logo-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
}

/* Par défaut, masquer le header mobile sur desktop */
.jsr-header-mobile {
  display: none;
}
.jsr-mobile-drawer {
  display: none;
}

/* Responsive simples pour md: */
@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }
}

/* ---------- Mock de formulaires (visuel uniquement, sans logique) ---------- */

.jsr-form-mock {
  border: 1px solid var(--border);
  background-color: rgba(0, 0, 0, 0.25);
  padding: 2rem 2.5rem;
  border-radius: 0.75rem;
}

.jsr-form-mock-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.jsr-form-mock-field {
  height: 2.75rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(249, 245, 235, 0.2);
  background: rgba(12, 10, 8, 0.7);
}

.jsr-form-mock-field--textarea {
  height: 6rem;
}

.jsr-form-mock-button {
  margin-top: 1.5rem;
  height: 2.75rem;
  max-width: 260px;
  border-radius: 999px;
  border: 1px solid rgba(249, 245, 235, 0.4);
  background: linear-gradient(90deg, rgba(187, 153, 98, 0.9), rgba(187, 153, 98, 0.7));
  opacity: 0.6;
}

@media (min-width: 768px) {
  .jsr-form-mock-row--two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* header visible (réactivé) */

/* ---------- Navigation mobile ---------- */
@media (max-width: 991px) {
  .jsr-header {
    background-color: #000; /* Force black background for mobile header */
    z-index: 99999;
  }
  /* Harmonisation des Heros sur mobile */
  section.min-h-\[60vh\] .container,
  section.min-h-\[40vh\] .container {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .elementor .elementor-heading-title{
    font-size: clamp(1.1rem, 6vw, 1.5rem);
    letter-spacing: .12em;
    text-align: center;
  }
  .elementor .elementor-widget-text-editor{
    text-align: center;
  }
  section.min-h-\[60vh\] .container h1,
  section.min-h-\[40vh\] .container h1,
  section.min-h-\[60vh\] .container h2,
  section.min-h-\[40vh\] .container h2 {
    font-size: clamp(1.25rem, 6vw, 1.6rem);
    letter-spacing: 0.12em;
    line-height: 1.2;
  }
  section.min-h-\[60vh\] .container p,
  section.min-h-\[40vh\] .container p {
    margin-left: auto;
    margin-right: auto;
    max-width: 26rem;
  }
  /* Réservation – esthétique mobile */
  .jsr-reservation .container{
    max-width: 22rem;
  }
  .jsr-reservation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 1rem 2rem 1rem !important;
  }

  .jsr-reservation .bg-white {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    max-height: 85vh;
  }

  .jsr-reservation .bg-white > button,
  .jsr-reservation .bg-white .submit-button-wrapper > button {
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 90%;
    align-self: center;
    flex-shrink: 0;
  }
  .jsr-reservation .grid{
    gap: .75rem;
  }
  .jsr-reservation .bg-white{
    border-radius: .75rem;
    padding: 1rem !important;
  }
  /* Boutons/inputs génériques d'un widget de réservation intégré dans la section */
  .jsr-reservation button,
  .jsr-reservation [type="button"],
  .jsr-reservation [role="button"]{
    border-radius: 999px !important;
    padding: .55rem .9rem !important;
    border: 1px solid #B3884D !important;
    background: #fff !important;
    color: #1a1a1a !important;
    font-size: .85rem !important;
    letter-spacing: .06em !important;
  }
  .jsr-reservation button[aria-pressed="true"],
  .jsr-reservation .is-active,
  .jsr-reservation .active{
    background: #B3884D !important;
    color: #fff !important;
    border-color: #B3884D !important;
  }
  .jsr-reservation input[type="text"],
  .jsr-reservation input[type="tel"],
  .jsr-reservation input[type="email"],
  .jsr-reservation textarea,
  .jsr-reservation select{
    border-radius: .6rem !important;
    border: 1px solid #c0b0a0 !important;
    padding: .65rem .8rem !important;
    font-size: .9rem !important;
    width: 100%;
  }
  .jsr-reservation .time, 
  .jsr-reservation .hours, 
  .jsr-reservation [class*="time"], 
  .jsr-reservation [class*="slot"]{
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
  }
  .jsr-reservation iframe{
    width: 100% !important;
    max-width: 22rem !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .jsr-mobile-cta{
    padding: .6rem 1rem;
    border-radius: 999px;
    background: #B3884D;
    color: #fff;
    letter-spacing: .12em;
    font-size: .75rem;
  }
  .jsr-mobile-cta--outline{
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #B3884D;
  }

  .jsr-header-inner {
    display: none !important;
  }
  .jsr-header-mobile {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    position: fixed !important; /* Fixer en haut */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000000 !important; /* Passer au-dessus de tout */
    height: 60px;
    background-color: #000 !important;
  }
  .jsr-burger {
    width: 32px;
    height: 24px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0;
    cursor: pointer;
    z-index: 1000001 !important;
    pointer-events: auto !important;
  }
  /* Masquer le bouton de menu par défaut d'Elementor */
  .elementor-menu-toggle {
    display: none !important;
  }
  .jsr-burger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff; /* Force white bars for visibility */
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .jsr-mobile-drawer {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 100001;
    display: none;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .jsr-mobile-drawer.is-open {
    display: flex;
    opacity: 1;
  }
  .jsr-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  .jsr-mobile-drawer-header .jsr-logo-circle {
    margin: 0;
    width: 2.5rem;
    height: 2.5rem;
  }
  .jsr-mobile-close {
    background: none;
    border: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 0;
  }
  .jsr-close-icon {
    font-size: 1.5rem;
    line-height: 1;
  }
  .jsr-close-text {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    margin-top: 2px;
  }
  .jsr-mobile-drawer-inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem 1rem;
  }
  .jsr-mobile-nav {
    width: 100%;
    text-align: center;
  }
  .jsr-mobile-nav .jsr-nav-group {
    display: block !important;
    margin-bottom: 1.5rem;
  }
  .jsr-mobile-nav .jsr-nav-group--nested {
    margin-bottom: 0.5rem;
  }
  .jsr-mobile-nav .jsr-nav-link {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  .jsr-mobile-nav .jsr-nav-link:hover,
  .jsr-mobile-nav .jsr-nav-link.is-active,
  .jsr-mobile-nav .current-menu-item > a,
  .jsr-mobile-nav .current_page_item > a {
    background-color: #ff4d4d;
  }
  .jsr-mobile-nav .jsr-submenu,
  .jsr-mobile-nav .jsr-submenu--nested {
    position: static !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none;
    margin-top: 0.5rem !important;
  }
  .jsr-mobile-nav .jsr-submenu--nested {
    margin-left: 1.5rem !important;
  }
  .jsr-nav-group--open > .jsr-submenu,
  .jsr-nav-group--open > .jsr-submenu--nested {
    display: block !important;
  }
  .jsr-mobile-nav .jsr-submenu-link--has-sub .jsr-nav-chevron {
    transform: none !important;
    display: inline-block !important;
    font-size: 0.6rem !important;
  }
  .jsr-nav-group--open > .jsr-submenu-link--has-sub .jsr-nav-chevron {
    transform: rotate(180deg) !important;
  }
  .jsr-mobile-nav .jsr-submenu-link {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 1rem;
    display: block;
  }
  .jsr-mobile-nav .jsr-nav-chevron {
    display: none;
  }
}
