/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2025 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.lang-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  max-width: 400px;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

.lang-popup-content {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 15px;
}

.lang-popup-buttons {
  display: flex;
  gap: 10px;
}

.lang-popup-button {
  padding: 4px 12px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}

.lang-popup-button.primary {
  background-color: #000;
  color: #fff;
}

.lang-popup-button:hover {
  background-color: #fff;
  color: #000;
}


/* FLAGS */
/* .flags-container {
  position: relative;
  display: inline-block;
}

.flags-container .current-flag {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.flags-container .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  padding: 5px 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.flags-container .current-flag:hover .dropdown {
  display: block;
}

.flags-container .flag {
  display: block;
  padding: 5px 10px;
}

#header .menu_wrapper .flags-container {
  display: none;
}


@media screen and (max-width: 919px) {
  #header .cart_wrapper .flags-container {
    display: none;
  }

  .flags-container .dropdown {
    top: initial;
    bottom: 100%;
  }

  #header .menu_wrapper .flags-container {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
  }
} */