@font-face {
    font-family: 'Futura';
    src: url('/assets/fonts/Futura Bold.woff2') format('woff2'),
        url('/assets/fonts/Futura Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
   font-display: swap;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #103d61;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: image-set(
    url("/assets/img/website-bg-desktop.avif") type("image/avif"),
    url("/assets/img/website-bg-desktop.webp") type("image/webp")
  );
  background-size: cover;
  background-position: center top; /* clé ici */
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .bg-fixed {
    background-image: image-set(
      url("/assets/img/website-bg-tablet.avif") type("image/avif"),
      url("/assets/img/website-bg-tablet.webp") type("image/webp")
    );
	}
}
@media (max-width: 767px) {
  .bg-fixed {
    background-image: image-set(
      url("/assets/img/website-bg-mobile.avif") type("image/avif"),
      url("/assets/img/website-bg-mobile.webp") type("image/webp")
    );
  }
}
img {
  border: 0;
}
a {
  text-decoration: none;
	width: auto;
	height: auto;
}
svg {
  display: block;
}
#page {
  position: relative;
  width: 100%;
	max-width: 1220px;
  margin: 0 auto;
}
#content {
  position: relative;
  float: left;
	width: 100%;
	margin: 60px 0px;
}
#header {
  position: relative;
  width: 100%;
  float: left;
	margin-bottom: 40px;
}
#header-bar {
  position: relative;
  width: 100%;
	max-width: 1220px;
  height: 65px;
  margin: 0 auto;
	padding-top: 7px;
	padding-right: 10px;
	margin-top: 60px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 40px;
	box-sizing: border-box;
}
#header-logo {
  position: relative;
  float: left;
  width: 62px;
  height: 62px;
  margin: -10px 0px 0px -4px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  z-index: 20;
}
#header-logo img {
  border-radius: 50%;
}
#menu {
  position: relative;
  float: left;
  margin: 7px 0 0 16px;
}
.menu-btn {
  font-family: 'Futura';
  font-size: 18px;
  font-weight: normal;
  position: relative;
  float: left;
	width: auto;
  height: 34px;
  line-height: 32px;
  margin-right: 10px;
  padding: 0 15px;
  border: 4px solid #ffffff;
  border-radius: 54px;
  text-transform: uppercase;
  color: #103d61;
}
button.menu-btn {
	height: 44px;
	cursor: pointer;
}
.menu-btn-dark {
  background: #0f4a73;
  color: #ffffff;
	padding-top: 2px;
	padding-left: 30px;
	margin-top: 3px;
	margin-left: -25px;
	z-index: 10;
}
.menu-btn-green {
  background: #91ea80;
  color: #103d61;
	padding: 2px 15px;
	margin-top: 3px;
	float: left;
}
.menu-btn.menu-store {
	width: calc(100% - 152px)!important;
}
.menu-btn-blue {
  background: #94c4ee;
  color: #103d61;
	padding: 2px 15px;
	margin-top: 3px;
	float: right;
}
.menu-lazada {
	position: relative;
	float: right;
	width: 42px;
	height: 42px;
	margin-right: 10px;
	margin-top: 4px;
	border-radius: 21px;
}
.menu-shopee {
	position: relative;
	float: right;
	width: 42px;
	height: 42px;
	margin-right: 10px;
	margin-top: 4px;
	border-radius: 21px;
}
#lang-logo {
	position: relative;
	float: right;
	width: 44px;
	height: 44px;
	margin-right: 5px;
	margin-top: 4px;
	border: 4px solid #ffffff;
	border-radius: 21px;
	padding: 0px;
	cursor: pointer;
}
.menu-icon {
  position: relative;
  float: left;
  width: 24px;
  height: 24px;
  margin: 4px 8px 0 0;
  text-align: center;
  line-height: 24px;
  font-size: 22px;
  font-weight: 700;
}
.menu-icon svg {
  width: 100%;
  height: 100%;
  fill: #103d61;
}
.menu-text {
  position: relative;
  float: left;
  line-height: 34px;
}
.menu-arrow {
  position: relative;
  float: left;
  width: 0;
  height: 0;
  margin: 12px 0 0 10px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #0f4a73;
}
#lang-btn {
  position: relative;
  float: left;
  width: 42px;
  height: 42px;
  margin-top: 0;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
	z-index: 3;
}
#lang-menu {
	display: none;
	position: absolute;
	width: 110px;
	top: 75px;
	right: 0;
	background: #dfe8da;
	border: 4px solid #ffffff;
	border-radius: 20px;
	padding: 0 10px;
	z-index: 15;
	box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.7);
}
#lang-menu.open {
	display: block;
	animation: dropdown .5s ease;
}
#menu-content-menu {
	display: none;
	position: absolute;
	width: 30%;
	top: 75px;
	left: 0;
	background: #dfe8da;
	border: 4px solid #ffffff;
	border-radius: 20px;
	padding: 10px;
	z-index: 15;
	box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.7);
}
#menu-content-menu.open {
	display: block;
	animation: dropdown .5s ease;
}
#menu-content-destinations {
	display: none;
	position: absolute;
	width: 30%;
	top: 75px;
	left: 0;
	background: #dfe8da;
	border: 4px solid #ffffff;
	border-radius: 20px;
	padding: 10px;
	z-index: 2;
	box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.7);
}
#menu-content-destinations.open {
	display: block;
	animation: dropdown .5s ease;
}
.menu-destinations-country {
	position: relative;
	float: left;
	width: 100%;
}
.menu-destinations-country .menu-btn {
	float: left;
	width: calc(100% - 40px);
	cursor: default;
	text-align: center;
}
.menu-destinations-island {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 5px;
}
.menu-destinations-island .menu-btn {
	float: left;
	width: calc(100% - 40px);
}
@keyframes dropdown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lang-menu-line {
	position: relative;
	float: left;
	width: 100%;
	clear: both;
	padding: 7px 0;
}
.lang-menu-flag {
	border: 4px solid #ffffff;
  border-radius: 50%;
	position: relative;
	float: left;
	width: 20px;
  height: 20px;
}
.lang-menu-flag svg {
	width: 20px!important;
	height: 20px!important;
	display: block!important;
}
.lang-menu-text {
	position: relative;
	float: left;
	padding: 5px 10px;
	color: #0f4a73;
	font-weight: bold;
}
.lang-menu-sep {
	position: relative;
	float: left;
	width: 100%;
	height: 1px;
	background-color: white;
	clear: both;
	padding: 0;
}
#title-h1 {
	position: relative;
	float: left;
	width: 100%;
	text-align: center;
	clear: both;
	color: white;
  font-family: Futura;
  font-size: 50px;
}
#title-h1 h1 {
	position: relative;
	font-family: 'Futura';
	font-size: 45px;
	color: white;
}
#products-bar {
	display: flex;
	position: relative;
	width: fit-content;
	height: 50px;
	margin: 0 auto;
	padding: 5px 2px 5px 10px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 30px 30px 0 0;
	text-align: center;
}
.button-content {
  display: block;
	position: relative;
  line-height: 34px;
	margin: 0px;
}
#products-container {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  clear: both;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 20px;
  box-sizing: border-box;
}
.product-container {
  position: relative;
  border-radius: 60px;
  background: linear-gradient(to bottom, white, #58c8d9);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
	gap: 15px;
}
.product-container.square {
  border-radius: 20px;
}
.product-img {
	width: 100%;
	height: auto;
	border-radius: 30px 30px 10px 10px;
}
.product-img img {
	display: block;
	width: calc(100% - 20px);
	height: auto;
	margin: 10px 10px 0px 10px;
	border-radius: 50px 50px 10px 10px;
	
}
.product-container.square .product-img,
.product-container.square .product-img img {
  border-radius: 10px;
}
.product-title {
	font-family: 'Futura';
	width: calc(100% - 60px);
	padding: 10px 20px;
	text-align: center;
	font-size: 20px;
	line-height: 22px;
	margin: 0px 0px 0px 10px;
	font-weight: normal;
	background-color: white;
	border-radius: 10px 10px 10px 10px;
}
.product-excerpt {
	width: calc(100% - 40px);
	text-align: center;
	font-size: 15px;
  line-height: 18px;
	margin: 0px 20px 10px 20px;
}
.product-details {
	width: 100%;
	text-align: center!important;
}
.product-details a {
	display: inline-block;
	position: relative;
	float: none;
	width: fit-content;
	margin: 0; /* important */
	background-color: #103d61;
	border: 4px solid white;
}
.product-details a svg,
.product-details a span {
	position: relative;
	color: white;
}
.product-buy {
  position: relative;
  width: 100%;
  background: #94c4ee;
  color: #103d61;
  font-weight: bold;
  text-align: left;
  margin-top: auto;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 0 0 10px 10px;
}
.product-buy .menu-btn {
	display: inline-block;
	position: relative;
	float: none;
	width: fit-content;
	margin: 0px auto;
}
.platforms-intro {
	width: calc(100% - 40px);
	padding-bottom: 10px;
	text-align: center;
	font-size: 12px;
	line-height: 14px;
	margin: 10px 20px 0px 20px;
}
.platforms-container {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 10px;
}
.platform-lazada,
.platform-shopee {
	width: auto;
	float: none;
}
.platform-lazada a,
.platform-shopee a {
	float: none;
	display: block;
	border-radius: 50%;
	background-color: transparent;
}
.platform-lazada img,
.platform-shopee img {
	float: none;
	display: block;
	width: 60px;
}
#product-info-container{
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	margin-top: 40px;
	margin-bottom: 98px;
	clear: both;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 30px;
}
#product-img-container {
	position: relative;
	float: left;
	width: 50%;
	margin: 20px 0px 20px 20px;
	box-sizing: border-box;
}
.product-img-main {
	position: relative;
	float: left;
	width: 100%;
	border-radius: 10px;
	border:4px solid #ffffff;
	box-sizing: border-box;
	background-color: white;
}
.product-img-main img {
	width: 100%;
	height: auto;
	margin-bottom: -4px;
	border-radius: 10px;
}
.product-img-second {
	position: relative;
	float: left;
	width: 20%;
	margin: 10px 10px 0px 0px;
	border-radius: 10px;
	border:4px solid #ffffff;
	box-sizing: border-box;
	background-color: white;
}
.product-img-second img {
	width: 100%;
	height: auto;
	margin-bottom: -4px;
	border-radius: 10px;
}
#product-desc-content {
	position: relative;
	float: right;
	width: calc(50% - 60px);
	margin: 20px;
	box-sizing: border-box;
}
#product-title,
#product-title-mobile  {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 10px;
	box-sizing: border-box;
	padding: 0px 20px;
	border-radius: 10px;
	background-color: #103d61;
	text-align: center;
}
#product-title-mobile  {
	display: none;
}
#product-title h1,
#product-title-mobile h1 {
	position: relative;
	float: left;
	width: 100%;
	color: white;
	font-family: 'Futura';
	font-size: 35px;
	line-height: 37px;
}
#product-destination {
	position: relative;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 10px;
}
#product-destination a {
	position: relative;
	clear:both;
	cursor: pointer;
}
#product-little-description {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 20px;
	margin-top: 20px;
	box-sizing: border-box;
	color: #103d61;
	text-align: justify;
	font-size: 15px;
	line-height: 18px;
	vertical-align: top;
	column-count: 2;
	column-gap: 20px;
	column-fill: balance;
	hyphens: auto;
	display: block;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 20px;
	border-radius: 10px;
}
#product-buy {
	position: relative;
	width: fit-content;
	margin: 0px auto;
	margin-bottom: 20px;
	box-sizing: border-box;

}
#product-buy-left {
	position: relative;
	float: left;
	width: 170px;
	margin-right: 15px;
}
#product-buy .menu-btn-green {
  margin: 0px;
  float: left;
	margin-top: 5px;
	margin-left: 0px;
	z-index: 10;
}
#product-buy-platforms {
	position: relative;
	float: left;
	width: 167px;
	text-align: center;
	font-size: 13px;
	line-height: 16px;
	padding: 10px;
	box-sizing: border-box;
	background-color: white;
	border-radius: 10px;
	padding-top: 30px;
	margin-top: -25px;
	z-index: 5;
}
#product-buy img{
	width: 90px;
	height: auto;
	border-radius: 50%;
	border:4px solid #ffffff;
	padding: 0px;
	margin: 0px;
	margin-right: 10px;
}
#specs-bar {
	display: flex;
	position: relative;
	width: fit-content;
	height: 50px;
	margin: 0 auto;
	padding: 5px 2px 5px 10px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 30px 30px 0 0;
	text-align: center;
}
.specs-bar-title {
  display: block;
	position: relative;
  line-height: 34px;
	margin: 0px;
}
#specs-container {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	margin-bottom: 98px;
	clear: both;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 30px;
}
#specs-content {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	margin: 20px;
	box-sizing: border-box;
}
#specs-description,
#specs-specifications,
#specs-reviews {
	position: relative;
	float: left;
	width: calc(100% - 80px);
	height: auto;
	box-sizing: border-box;
	background-color: white;
	border-radius: 30px;
	padding: 20px;
	display: none;
}
#related-bar {
	display: flex;
	position: relative;
	width: fit-content;
	height: 50px;
	margin: 0 auto;
	padding: 5px 2px 5px 10px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 30px 30px 0 0;
	text-align: center;
}
#related-content {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	margin-bottom: 80px;
	clear: both;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 30px;
}
/* Curseur sur les miniatures */
#product-img-container img {
	cursor: pointer;
}
/* Overlay */
.custom-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(16, 61, 97, 1);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px 80px; /* moins de marge pour laisser plus de place à l'image */
	box-sizing: border-box;
}
/* Visible */
.custom-lightbox.open {
	display: flex;
}
/* Contenu */
.custom-lightbox-content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
/* Image */
.custom-lightbox-image {
	max-width: 98vw;
	max-height: 88vh;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
	border-radius: 8px;
}
/* Titre */
.custom-lightbox-caption {
	margin-top: 15px;
	color: #fff;
	font-size: 18px;
	text-align: center;
}
/* Bouton fermeture */
.custom-lightbox-close {
	position: fixed;
	top: 20px;
	right: 20px;
	background: #fff;
	color: #000;
	border: none;
	font-size: 32px;
	line-height: 1;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-weight: bold;
	z-index: 10001;
}
/* Flèches fixes sur les bords */
.custom-lightbox-prev,
.custom-lightbox-next {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border: none;
	font-size: 40px;
	width: 60px;
	height: 60px;
	cursor: pointer;
	border-radius: 50%;
	backdrop-filter: blur(4px);
	z-index: 10001;
}
.custom-lightbox-close,
.custom-lightbox-prev,
.custom-lightbox-next {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Ajustement visuel du symbole */
.custom-lightbox-close {
	padding-bottom: 4px;
}
.custom-lightbox-prev,
.custom-lightbox-next {
	padding-bottom: 4px;
}
.custom-lightbox-prev {
	left: 20px;
}
.custom-lightbox-next {
	right: 20px;
}
.custom-lightbox-prev:hover,
.custom-lightbox-next:hover,
.custom-lightbox-close:hover {
	background: #fff;
	color: #000;
}
.product-buy-title {
  font-family: 'Futura';
  font-size: 18px;
  font-weight: normal;
  display: inline-block;
  position: relative;
  width: fit-content;
  height: 34px;
  line-height: 32px;
  margin: 3px auto 0px auto;
  padding: 2px 15px 0;
  border: 4px solid #fff;
  border-radius: 21px;
  background: #91ea80;
  color: #103d61;
  text-transform: uppercase;
  text-align: center;
	float: none;
	z-index: 10;
}
#product-destination > a.menu-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	float: none;
	position: relative;
	width: auto;
	height: auto;
	line-height: normal;
	padding: 8px 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: 20px 0px 0px 0px;
}
#product-destination > a.menu-btn .menu-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	margin-top:-2px;
}
#product-destination > a.menu-btn .menu-icon svg {
	display: block;
	width: 100%;
	height: auto;
}
#product-destination > a.menu-btn .menu-text {
	display: inline-block !important;
	line-height: 1.2 !important;
}
#product-destination > a.menu-btn .menu-icon,
#product-destination > a.menu-btn .menu-text,
#product-destination > a.menu-btn svg,
#product-destination > a.menu-btn svg * {
	pointer-events: none !important;
}
#menu-content-menu hr {
	margin: 15px 15px;
  position: relative;
  float: left;
  width: calc(100% - 30px);
  color: #103d61;
	clear: both;
}
.menu-section-title {
	width: 100%;
	text-align: center;
	font-family: "Futura";
	font-size: 17px;
	color: #103d61;
}
#menu-content-menu .menu-btn {
	height: inherit;
}
#menu-content-menu .menu-btn .menu-text {
	font-size: 17px;
	line-height: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
}
#menu-content-menu .menu-decal {
	padding-top: 4px;
}
.menu-whatsapp-container {
	float: left;
	width: calc(50% - 5px);
}
.menu-line-container {
	float: right;
	width: calc(50% - 5px);
}
.button-content .text-center {
	width: 100%;
	text-align: center;
}
.button-content img {
	width: 100%;
}
#copyright {
	width: 100%;
	text-align: center;
	font-size: 11px;
	color: #103d61;
}
#copyright a {
  font-weight: bold;
	color: #103d61;
}
#destinations-container-bar {
	display: flex;
	position: relative;
	width: fit-content;
	height: 50px;
	margin: 0 auto;
	padding: 5px 2px 5px 10px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 30px 30px 0 0;
	text-align: center;
}
#destinations-container {
  position: relative;
  float: left;
	width: 100%;
  height: auto;
  margin-bottom: 98px;
  clear: both;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 10px;
  box-sizing: border-box;
	text-align: center;
}
.destinations-content {
	position: relative;
	float: left;
	width: 151px;
	height: 225px;
	border-radius: 10px;
	box-sizing: border-box;
	margin: 10px;
}
.destinations-content-title {
	position: relative;
	float: left;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;      /* centre verticalement */
	justify-content: center;  /* centre horizontalement */
	padding: 10px;
	background-color: #91ea80;
	color: #103d61;
	font-size: 14px;
	border-radius: 10px 10px 10px 10px;
	font-family: "Futura";
	line-height: 16px;
	box-sizing: border-box;
	border: 4px solid white;
}
.destinations-content-img {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	border-radius: 10px 10px 10px 10px;
	margin-top: 10px;
}
#home-slider-container{
	position: relative;
	float: left;
	width: 50%;
	height: auto;
	margin-top: 0px;
	margin-bottom: 40px;
	border-radius: 10px;
}
#home-slider-container img {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	border-radius: 10px 10px 50px 10px;
}
#home-desc-container {
	position: relative;
  float: right;
	width: calc(50% - 40px);
  height: auto;
  margin-bottom: 101px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50px 10px 10px 10px;
  padding: 20px;
  box-sizing: border-box;
	text-align: center;
}
#home-desc-logo {
  position:relative;
  float:left;
  width:100px;
  height:100px;
  margin: -20px 10px 0px -20px;
  border-radius: 50%;
  border:4px solid #ffffff;
  z-index: 12;
}
#home-desc-logo img {
  border-radius: 50%;
}
.home-desc-title {
	position: relative;
	float: left;
	width: calc(100% - 110px);
	font-size: 25px;
	font-family: "Futura";
	margin-top: 0px;
}
.home-desc-text {
	position: relative;
	float: left;
	font-size: 15px;
  line-height: 18px;
	text-align: justify;
	margin-top: 10px;
}
.home-desc-text-middle {
	position: relative;
	float: left;
	background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
	font-size: 15px;
  line-height: 18px;
	margin: 0px;
}
.home-desc-text-left {
	position: relative;
	float: left;
	width: calc(50% - 10px);
	font-size: 15px;
  line-height: 18px;
	margin: 0px;
	margin-top: 13px;
}
.home-desc-text-right {
	position: relative;
	float: right;
	width: calc(50% - 10px);
	font-size: 15px;
  line-height: 18px;
	margin: 0px;
	margin-top: 13px;
}
#home-formats-container {
	position: relative;
  float: left;
	width: 100%;
  height: auto;
  margin-bottom: 97px;
  box-sizing: border-box;
	clear: both;
}
.home-formats-content {
	position: relative;
  float: left;
	width: calc(33.3% - 20px);
  height: auto;
  margin: 0px 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 70px;
  padding: 10px;
  box-sizing: border-box;
	text-align: center;
}
.home-formats-content .product-details {
	padding-bottom: 20px;
}
.home-formats-content .menu-btn-green {
	background-color: #91ea80;
	color: #103d61;
	border: 4px solid white;
}
.home-formats-content .product-details a span {
  position: relative;
  color: #103d61;
}
.business-2 {
	position: relative;
	float: left;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.home-business-container {
	position: relative;
  float: left;
	width: calc(50% - 20px);
  height: auto;
  margin-bottom: 40px;
  background: linear-gradient(to right, white, #58c8d9);
  border-radius: 60px 10px 60px 60px;
  padding: 10px;
  box-sizing: border-box;
	text-align: center;
}
.home-business-pic {
	position: relative;
  float: left;
	width: 50%;
  height: auto;
	border-radius: 10px;
}
.home-business-pic img {
	position: relative;
  float: left;
	width: 100%;
  height: auto;
	border-radius: 50px 10px 10px 50px;
	margin-right: 10px;
}
.home-business-content {
	position: relative;
  float: right;
	width: 50%;
  height: auto;
	border-radius: 10px;
}
.home-business-title {
	position: relative;
  float: left;
	font-family: "Futura";
	width: calc(100% - 10px);
	font-size: 18px;
  line-height: 20px;
	text-transform: uppercase;
	padding: 10px 15px;
	background-color: white;
  border-radius: 10px;
  box-sizing: border-box;
	margin-left: 10px;
	margin-top: 0px;
	margin-bottom: 0px;
	font-weight: normal;
}
.home-business-desc {
	position: relative;
  float: left;
	width: calc(100% - 10px);
  border-radius: 10px;
  padding: 10px 10px 15px 10px;
  box-sizing: border-box;
	text-align: center;
	margin: 10px 0px 0px 10px;
	font-size: 15px;
  line-height: 18px;
}
.home-business-container.float-right {
  background: linear-gradient(to left, white, #58c8d9);
  border-radius: 10px 60px 60px 60px;
}
.home-business-container.float-right .home-business-pic {
	float: right;
}
.home-business-container.float-right .home-business-pic img {
	float: right;
	margin-right: 0px;
	border-radius: 10px 50px 50px 10px;
}
.home-business-container.float-right .home-business-content {
	float: left;
	margin-left: 0px;
}
.home-business-container.float-right .home-business-title {
	margin-left: 0px;
}
.home-business-container.float-right .home-business-desc {
	margin-left: 0px;
}
.home-business-content .menu-btn-green {
	background-color: #91ea80;
	color: #103d61;
	border: 4px solid #103d61;
}
.home-business-content .product-details a span {
  position: relative;
  color: #103d61;
}
.home-business-desc .sub-title {
	text-align:center;
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 16px;
	color: #103d61;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.title-bar-container {
	position: relative;
  display: block;
  width: fit-content;
	height: 75px;
  margin: 0 auto 50px auto;
  padding: 15px 10px 10px 20px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 62px;
  text-align: center;
  clear: both;
}
.title-bar-container .menu-btn {
	height: 55px;
}
.title-bar-container .specs-bar-title {
	font-size: 25px; 
	margin: 10px;
}
.social-net{
	border-radius: 20px;
} 
.product-title.big-title {
  font-family: 'Futura';
  position: relative;
  width: calc(100% - 60px);
  padding: 10px 20px;
  display: flex;
  align-items: center;     /* centre vertical */
  justify-content: center; /* centre horizontal */
  gap: 10px; /* espace entre iconne et texte */
  font-size: 20px;
  margin: 0 0 0 10px;
  font-weight: normal;
  background-color: white;
  border-radius: 10px;
}
.big-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0; /* empèche l'icone de rétrécir */
}
.big-icon svg {
  width: 100%;
  height: 100%;
}
.products-bar-title {
  margin-top: 0px;
}










		/* Responsive ==============================================*/


		@media (max-width: 1280px) {
			#page {
				width: calc(100% - 40px);
				padding: 0 20px 0px 20px;
				box-sizing: border-box;
			}
			#header-bar {
				width: calc(100% - 40px);
				box-sizing: border-box;
				margin-top: 25px;
			}
			#menu-content-destinations {
				width: 50%;
			}
			#menu-content-menu {
				width: 50%;
			}
			.home-business-container {
				width: calc(50% - 20px);
				height: auto;
				margin-bottom: 40px;
				background: linear-gradient(to bottom, white, #58c8d9)!important;
				border-radius: 60px!important;
				margin-left: 10px;
				margin-right: 10px;
			}
			.home-business-pic {
				width: 100%;
			}
			.home-business-pic img {
				width: 100%;
				border-radius: 50px 50px 10px 10px!important;
				margin-right: 10px;
			}
			.home-business-title {
				position: relative;
				float: left;
				font-family: "Futura";
				width: 100%;
				font-size: 20px;
				line-height: 22px;
				text-transform: uppercase;
				padding: 10px 15px;
				background-color: white;
				border-radius: 10px;
				box-sizing: border-box;
				margin-top: 20px;
				margin-left: 0px;
			}
			.home-business-content {
				width: 100%;
			}
			.home-business-desc {
				width: calc(100% - 10px);
			}
		}
		@media (max-width: 1100px) {
			#product-img-container {
				width: calc(100% - 40px);
				margin-right: 0px;
			}
			#product-desc-content {
				width: calc(100% - 40px);
				margin-right: 0px;
				margin-left: 20px;
				float: left;
			}
			#product-title {
				display: none;
			}
			#product-title-mobile {
				display: block;
			}
		}
		@media (max-width: 1020px) {
			#products-container {
				grid-template-columns: repeat(3, 1fr);
			}
			#home-slider-container {
				width: 100%;
			}
			#home-desc-container {
				position: relative;
				float: right;
				width: calc(100% - 0px);
				height: auto;
				margin-bottom: 101px;
				background-color: rgba(255, 255, 255, 0.7);
				border-radius: 50px 10px 10px 10px;
				padding: 20px;
				box-sizing: border-box;
				text-align: center;
			}
		}
		@media (max-width: 830px) {
			.menu-lazada.menu-lazada-2,
			.menu-shopee.menu-shopee-2 {
				display: inline-block;
			}
		}
		@media (max-width: 768px) {
			#products-container {
				grid-template-columns: repeat(2, 1fr);
			}
			.custom-lightbox {
				padding: 20px;
			}
			.custom-lightbox-image {
				max-width: 95vw;
				max-height: 70vh;
			}
			.custom-lightbox-prev,
			.custom-lightbox-next {
				width: 50px;
				height: 50px;
				font-size: 30px;
			}
			.custom-lightbox-prev {
				left: 10px;
			}
			.custom-lightbox-next,
			.custom-lightbox-close {
				right: 10px;
			}
			#menu-content-destinations{
				width: 75%;
			}
			#menu-content-menu{
				width: 75%;
			}
			.map-businesses {
				height: 106px;
			}
			.map-businesses .menu-btn {
				height: 84px;
			}
		}
		@media (max-width: 720px) {
			.menu-btn.menu-btn-blue.hid700 {
				display: none;
			}
			.menu-destinations-btn {
				float: right;
			}
		}
		@media (max-width: 704px) {
			.map-formats {
				height: 106px;
			}
			.map-formats .menu-btn {
				height: 84px;
			}
		}
		@media (max-width: 700px) {
			#products-bar {
				width: calc(100% - 80px);
				display: table;
				height: auto;
				margin: 0 auto;
				padding-top: 10px;
				padding-bottom: 10px;
			}
			#products-bar .menu-btn {
				width: calc(100% - 50px);
				margin-right: 10px;
				float: left;
			}
			#specs-bar {
				width: calc(100% - 80px);
				display: table;
				height: auto;
				margin: 0 auto;
				padding-top: 10px;
				padding-bottom: 10px;
			}
			#specs-bar .menu-btn {
				width: calc(100% - 50px);
				margin-right: 10px;
				float: left;
			}
			.home-formats-content {
				position: relative;
				float: left;
				width: calc(100% - 0px);
				height: auto;
				margin: 0px 0px 40px 0px;
				background-color: rgba(255, 255, 255, 0.5);
				border-radius: 70px;
				padding: 10px;
				box-sizing: border-box;
				text-align: center;
			}

		}
		@media (max-width: 585px) {
			.menu-destinations-btn {
				display: none;
			}
			.mobile-only {
				display: inline-block;
			}
			.menu-lazada,
			.menu-shopee{
				display: none;
			}
			.home-business-container {
				width: calc(100% - 20px);
				height: auto;
				margin-bottom: 40px;
				background: linear-gradient(to bottom, white, #00a3bd);
				border-radius: 60px;
				margin-left: 10px;
				margin-right: 10px;
			}
			.home-business-pic {
				width: 100%;
			}
			.home-business-pic img {
				width: 100%;
				border-radius: 50px 50px 10px 10px;
				margin-right: 10px;
			}
			.home-business-title {
				position: relative;
				float: left;
				font-family: "Futura";
				width: 100%;
				font-size: 20px;
				line-height: 22px;
				text-transform: uppercase;
				padding: 10px 15px;
				background-color: white;
				border-radius: 10px;
				box-sizing: border-box;
				margin-top: 20px;
				margin-left: 0px;
			}
			.home-business-content {
				width: 100%;
			}
			.home-business-desc {
				width: calc(100% - 10px);
			}
		}
		@media (max-width: 562px) {
			#products-container {
				grid-template-columns: 1fr;
			}
		}
		@media (max-width: 520px) {
			#product-buy img {
				width: 57px;
			}
			.menu-destinations-text {
				display: none;
			}
			#menu-btn-destinations .menu-icon {
				margin-right: 0px;
			}
			#menu-content-destinations {
				width: calc(100% - 30px);
			}
			#menu-content-menu {
				width: calc(100% - 30px);
			}
			#header-bar {
				width: calc(100% - 10px);
				padding-top: 8px;
				padding-right: 10px;
				margin-top: 15px;
				background-color: rgba(255, 255, 255, 0.7);
				border-radius:40px;
				box-sizing: border-box;
			}
			#page {
				width: 100%;
			}
			.destinations-content {
				width: 155px;
			}
			#menu-btn-destinations.menu-btn {
				padding: 0px 10px 0px 5px; 
			}
			#menu-btn-destinations .menu-arrow {
				margin-left: 5px;
			}
			#menu-btn-destinations .menu-icon {
				margin-top: 0px;
			}
			.title-bar-container {
				height: 90px;
			}
			.title-bar-container .menu-btn {
				height: 67px;
			}
			.title-bar-container .specs-bar-title {
				font-size: 19px; 
				line-height: 22px;
				margin: 10px;
			}
			#home-desc-logo {
				display: none;
			}
			.home-desc-title {
				width: 100%;
			}
			 #home-desc-container {
				border-radius: 50px;
			}
		}
		@media (max-width: 450px) {	
			.hid700 {
				display: none;
			}
		}
		@media (max-width: 401px) {
			.map-businesses {
				height: 106px;
			}
			.map-businesses .menu-btn {
				height: 84px;
			}
		}

