/*
Theme Name: Attika Child
Theme URI: https://attika.qodeinteractive.com
Description: A child theme of Attika Theme
Author: Mikado Themes
Author URI: https://themeforest.net/user/mikado-themes
Version: 1.0.1
Text Domain: attika
Template: attika
*/
/* === SXM Culinary Luxury Language Switcher === */
#lang-switcher-luxury {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px; /* espace entre les drapeaux */
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d4af37; /* doré chic */
  border-radius: 40px;
  padding: 8px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

#lang-switcher-luxury:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* Drapeaux */
#lang-switcher-luxury .lang-flag img {
  width: 28px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, opacity 0.3s ease;
}

#lang-switcher-luxury .lang-flag:hover img {
  transform: scale(1.12);
  opacity: 0.9;
}

/* Langue active : surlignage doré */
#lang-switcher-luxury .lang-flag.active img {
  outline: 1px solid #d4af37;
  outline-offset: 3px;
}

/* Mobile */
@media (max-width: 768px) {
  #lang-switcher-luxury {
    bottom: 15px;
    left: 15px;
    gap: 10px;
    padding: 6px 12px;
  }

  #lang-switcher-luxury .lang-flag img {
    width: 22px;
  }
}



