@font-face {
  font-family: "SamsungOne";
  src: url("../../../Web/fonts/samsung/SamsungOne-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SamsungOne";
  src: url("../../../Web/fonts/samsung/SamsungOne-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "SamsungSharpSans";
  src: url("../../../Web/fonts/samsung/SamsungSharpSans-Bold.ttf")
    format("truetype");
  font-weight: bold;
  font-style: normal;
}
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  font-family: "SamsungOne", Arial, sans-serif;
}

.navbar {
  padding: 25px 0 15px 0;
  padding-inline-start: 10px;
}

.container {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: -50%;
  width: 158%;
  height: 1px;
  background: rgb(226, 223, 223);
}

.nav-links {
  list-style: none;
  display: flex;
  padding-top: 15px;
  gap: 30px;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a:hover {
  color: black;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: black;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links li.active a::after {
  width: 100%;
}

/*dropdown*/
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 215%;
  left: -417px;
  width: 1353px;
  background: white;
  border-top: 1px solid #ddd;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 1000;
}

.categories-list {
  width: 420px;
  border-right: 1px solid #ddd;
  padding: 20px 0 20px 80px;
}

.categories-list ul {
  list-style: none;
  padding: 0;
}

.category {
  padding: 0px;
  cursor: pointer;
}

.category:hover {
  font-weight: bold;
}

.products-list {
  flex-grow: 1;
  padding-left: 90px;
}

.products {
  display: none;
}

.products.active {
  display: flex;
  gap: 15px;
}

.product {
  background: #f9f9f9;
  padding: 10px 15px 10px 2px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.product img {
  width: 95px;
  margin: 0;
}

.category-link,
.product-link {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: black;
  text-decoration: none !important;
  padding: 10px;
  width: 100%;
  height: 100%;
  position: static !important;
}

.category-link {
  font-weight: normal !important;
  font-size: 16px !important;
}

.product-link {
  background: #f9f9f9;
  padding: 10px 15px 10px 2px;
  border-radius: 5px;
  gap: 10px;
}

.category-link:hover,
.product-link:hover {
  font-weight: bold !important;
}

.product-link img {
  width: 95px;
  margin: 0;
}

.category-link::after,
.product-link::after {
  display: none !important;
  content: none !important;
}

.search-cart {
  position: relative;
  display: flex;
  align-items: center;
  width: 280px;
  margin-right: -80px;
}

.search-cart input {
  width: 100%;
  padding: 6px 34px 6px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
}

.search-cart .search-button {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.search-button {
  margin-right: -15px;
}

.search-cart .search-icon {
  width: 21px;
  height: 21px;
}

.icons {
  display: flex;
  gap: 2px;
}

.icons img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: 0.3s;
}

.icons img:hover {
  opacity: 0.7;
}

/*version mobile*/
.logo {
  width: 150px;
}

.header-container {
  position: relative;
  width: 100%;
}

.hamburger-menu {
  display: none;
  font-size: 25px;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-90%);
  z-index: 1000;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.sidebar.active {
  right: 0;
  width: 360px;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.close-btn {
  font-size: 25px;
  cursor: pointer;
}

.sidebar .nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar .nav-links li {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.sidebar .nav-links a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/*dropdown-sidebar*/
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  padding-left: 15px;
  flex-direction: column;
}

.dropdown-content a {
  padding: 8px 0;
  font-weight: normal !important;
  border-bottom: none !important;
}

.dropdown-content a:hover {
  color: #555;
}

.dropdown.active .dropdown-content {
  display: flex;
  padding-top: 10px;
}

.dropdown.active .arrow {
  transform: rotate(180deg);
}

.arrow {
  display: inline-block;
  margin-left: 220px;
  transition: transform 0.3s ease;
  font-size: 12px;
}

@media not all and (min-width: 1025px) {
  .hamburger-menu {
    display: block;
  }

  .icons {
    width: 35px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 80px;
  }

  .nav-links {
    display: none;
  }

  .container {
    flex-wrap: wrap;
    padding-bottom: 15px;
  }

  .search-cart {
    display: block;
    width: 100%;
    margin-top: 10px;
    order: 3;
  }

  .search-cart input {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
  }

  .container::after {
    display: none;
  }

  .nav-links a::after {
    width: 0 !important;
  }

  .nav-links a:hover::after {
    width: 0 !important;
  }
}

/*slide*/
.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  max-height: 600px;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  width: 80%;
  padding-top: 100px;
}

.slide.active h1 {
  font-size: 3.3rem;
  font-family: "SamsungOne", sans-serif;
  font-weight: 700;
  color: white;
}

.slide.active p {
  font-size: 1.2rem;
  font-family: "SamsungOne", arial, sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.promo-img {
  width: 220px;
  margin: -8px 0 10px 0;
}

button {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid white;
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: white;
  color: black;
}

.slider-navigation-container {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.navigation-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 20px;
}

button.prev,
button.next {
  background: transparent;
  border: none;
  padding: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: rgb(177, 177, 177);
  transition: 0.3s;
}

button.prev:hover,
button.next:hover {
  background: rgba(255, 255, 255, 0.7);
  color: black;
}

/*offres*/
.offers-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 10px;
  border-radius: 10px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.offers-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}

.items-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: nowrap;
}

.item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
}

.item-card a {
  text-decoration: none;
  color: #000000;
  padding-bottom: 3px;
}

.item-box {
  background: #f1f1f1;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.item-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.item-label {
  font-size: 18px;
  color: #000000;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .items-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    width: 100%;
  }

  .items-wrapper::-webkit-scrollbar {
    display: none;
  }

  .item-card {
    flex: 0 0 auto;
    min-width: 120px;
    max-width: 150px;
    scroll-snap-align: start;
  }

  .item-box {
    padding: 15px;
    height: 120px;
  }

  .item-box img {
    width: 80px;
    height: 80px;
  }
}

/*nouveautes*/
.container-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border-radius: 10px;
  max-width: 1055px;
  width: 100%;
  margin: auto;
  gap: 30px;
  margin-top: -30px;
}

.main-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.main-card h2 {
  font-size: 25px;
  font-weight: bold;
  padding-top: 50px;
}

.phones img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  margin-top: -20px;
  padding-bottom: 20px;
}

.main-card button {
  background-color: black;
  color: white;
  padding: 10px 80px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 30px;
}

.main-card button:hover {
  background-color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 530px;
}

.card {
  background: #f1f1f1;
  padding: 15px;
  border-radius: 10px;
  align-items: center;
  text-align: center;
  border: none;
}

.card h3 {
  font-size: 20px;
  font-weight: bold;
  padding-top: 15px;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.card a {
  color: rgb(0, 0, 0);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-size: 13px;
  font-weight: bold;
}

.item-card.active .item-label {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  color: black;
}

@media screen and (max-width: 768px) {
  .container-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main-card {
    width: 100%;
    max-width: none;
  }

  .grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 275px;
    width: 100%;
    margin-bottom: -250px;
  }

  .grid::-webkit-scrollbar {
    display: none;
  }

  .card {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 250px;
    scroll-snap-align: start;
  }
}

/*produits*/
.product-tabs {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin-top: 80px;
}

.container-produits {
  width: 100%;
  padding-left: 138px;
  display: flex;
  justify-content: center;
}

/*@media (min-width: 1367px) {
    .container-produits {
        width: 100%;
        padding-left: clamp(138px, calc(138px + (650 * ((100vw - 1367px) / 1286))), 788px);
    }
    
    .btn-right {
        right: clamp(10px, calc(10px + (610 * ((100vw - 1367px) / 1286))), 620px) !important;
    }    
}*/

.product-tabs h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid #fafafa;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tabs span {
  cursor: pointer;
  padding: 8px 12px;
  font-size: 14px;
  color: #555;
  padding-bottom: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.tabs span.active-tab {
  font-weight: bold;
  color: black;
}

.tabs span.active-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: black;
}

.products-container {
  display: flex;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  overflow: visible;
  position: relative;
}

.first-prod {
  background-color: #f5f5f5;
  padding: 20px 0;
  border-radius: 10px;
  max-width: 420px;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

.first-prod h3 {
  font-size: 35px;
  font-weight: bold;
}

.first-prod p {
  font-size: 25px;
  font-weight: bold;
}

.first-prod img {
  width: 100%;
  object-fit: cover;
}

.products-container {
  display: flex;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  overflow: visible;
}

.scroll-container {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-content {
  display: flex;
  gap: 20px;
  width: max-content;
}

.prod {
  background: #fff;
  padding: 0;
  border-radius: 8px;
  text-align: center;
  max-width: 250px;
  flex-shrink: 0;
  height: 505px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.first-last-prod .image-container {
  padding: 15px 15px 50px 15px;
}

.first-last-prod .description-container {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.middle-prod .description-midle {
  padding: 26px 15px 1px 15px;
  border-radius: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.middle-prod .image-midle {
  padding: 0 15px 25px 15px;
}

.middle-prod .full-gray-container {
  background: #f5f5f5;
  padding: 30px 10px 15px 10px;
  border-radius: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.middle-prod img {
  margin-bottom: 15px;
}

.prod h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.prod p {
  font-size: 15px;
  margin: 0 0 10px 0;
}

.prod img {
  width: 100%;
  object-fit: contain;
}

.recommended-price {
  color: rgb(75, 75, 235);
  font-size: 13px;
  margin-top: auto;
}

.price {
  display: block;
  color: rgb(0, 0, 0);
  font-weight: bold;
  margin: 5px 0 10px 0;
  font-size: 22px;
}

.prod button {
  background-color: black;
  color: white;
  padding: 12px 0;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  width: 100%;
  margin-top: auto;
}

.prod button:hover {
  background-color: #333;
}

.btn-left,
.btn-right {
  position: absolute;
  top: 50%;
  transform: translateY(-105%);
  background-color: #000000;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100;
}

.btn-left {
  left: 450px;
}

.btn-right {
  right: 10px;
}

.btn-left:hover,
.btn-right:hover {
  background-color: #f5f5f5;
}

@media (max-width: 1024px) {
  .product-tabs {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
  }

  .container-produits {
    width: 100%;
    padding-left: 0;
    padding-right: 10px;
  }

  .product-tabs h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .tabs {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    border-bottom: 1px solid #fafafa;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tabs span {
    cursor: pointer;
    padding: 8px 12px;
    font-size: 14px;
    color: #555;
    padding-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .tabs span.active-tab {
    font-weight: bold;
    color: black;
  }

  .tabs span.active-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: black;
  }

  .products-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    width: 100%;
  }

  .first-prod {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    max-width: none;
  }

  .scroll-container {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
  }

  .scroll-container::-webkit-scrollbar {
    display: none;
  }

  .scroll-content {
    display: flex;
    gap: 15px;
    width: 100%;
  }

  .prod {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 250px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .btn-left,
  .btn-right {
    display: none;
  }
}

/*carousel*/
.carousel-container h2 {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 1;
  transition: transform 0.5s;
}

.carousel-slide img {
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.carousel-slide,
.carousel-slide {
  position: relative;
}

.slide-content {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(15%, -50%);
  color: white;
  text-align: left;
  width: 80%;
  padding-top: 100px;
}

.slide-text {
  font-size: 40px;
  color: #000;
}

.slide-button {
  padding: 14px 60px;
  background: black;
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.slide-button:hover {
  background-color: #ffffff;
}

.slidy-content {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  width: 80%;
  padding-top: 100px;
}

.slidy-text {
  font-size: 40px;
  color: #000;
}

.slidy-button {
  padding: 14px 60px;
  background: #f5f5f5;
  border-radius: 50px;
  color: #000000;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid black;
  transition: 0.3s;
}

.slidy-button:hover {
  background-color: #000000;
  color: white;
}

.carousel-dots {
  display: inline-flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background-color: #ffffff;
  margin-top: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background-color: gray;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: black;
}

@media (max-width: 768px) {
  .carousel {
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 0 5px;
    gap: 0;
  }

  .carousel-slide {
    min-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 0 5px;
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  .slide-content {
    position: absolute;
    top: 40%;
    left: 80%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    padding: 0;
  }

  .slide-text {
    font-size: 18px;
    color: #000;
  }

  .slide-button {
    font-size: 0.5rem;
    padding: 8px 20px;
    border-radius: 40px;
  }

  .slidy-content {
    position: absolute;
    top: 40%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    padding: 0;
  }

  .slidy-text {
    font-size: 18px;
    color: #000;
  }

  .slidy-button {
    font-size: 0.5rem;
    padding: 8px 20px;
    border-radius: 40px;
  }

  .carousel-container h2 {
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .carousel-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    padding: 8px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }
}

/*newsletter*/
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  margin-top: 75px;
}

.newsletter-container {
  text-align: center;
  background: #f5f5f5;
  padding: 50px 20px 30px 20px;
  border-radius: 20px;
  width: 920px;
  height: 250px;
}

.newsletter-container h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
}

.newsletter-container p {
  color: #000000;
  font-size: 16px;
}

.input-container {
  position: relative;
  display: inline-flex;
  margin-top: 10px;
  width: 400px;
}

.input-container input {
  width: 100%;
  padding: 10px 40px 10px 20px;
  border: 1px solid #ccc;
  border-radius: 50px;
  outline: none;
  height: 40px;
  box-sizing: border-box;
}

.input-container button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 25px;
  height: 25px;
}

.input-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 920px) {
  .wrapper {
    height: auto;
    padding: 20px;
    margin-top: 40px;
  }

  .newsletter-container {
    width: 100%;
    height: auto;
    padding: 30px 15px;
  }

  .input-container {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .newsletter-container h2 {
    font-size: 24px;
  }

  .newsletter-container p {
    font-size: 14px;
  }
}

/*footer*/
.footer {
  background-color: #000;
  padding: 80px 0 30px 0;
  margin-top: 70px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-column {
  width: 20%;
  min-width: 200px;
}

.footer-logo .logo {
  width: 220px;
  height: auto;
  padding-bottom: 20px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  color: #ffffff;
  padding-bottom: 15px;
}

.footer-column strong {
  color: white;
}

.footer-column p {
  font-size: 14px;
  color: white;
  margin-left: 30px;
}

.footer-column h6 {
  color: white;
  padding-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: block;
  transition: max-height 0.3s ease;
  max-height: 500px;
}

.footer-column.active ul {
  display: block;
  max-height: 0;
  overflow: hidden;
}

.footer-column li a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}

.footer-column li a:hover {
  color: #858585;
}

.footer-column ul li {
  font-size: 15px;
  margin-bottom: 5px;
  color: #ffffff;
}

.footer-column .contact-list li:first-of-type strong {
  padding-left: 0;
}

.footer-column .contact-list li:not(:first-of-type) strong {
  padding-left: 30px;
}

.footer-column:nth-child(2) {
  position: relative;
  padding-left: 50px;
}

.contact-list li {
  font-size: 14px;
}

.contact-list img.icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.footer-column img.icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.payment-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.payment-icons img {
  width: 300px;
  height: auto;
  margin-left: -12px;
  margin-top: -18px;
}

.footer-column .cont {
  display: block;
  transition: max-height 0.3s ease, padding 0.3s ease;
  max-height: 500px;
  padding-bottom: 20px;
}

.footer-column.active .cont {
  max-height: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #444;
  padding-top: 30px;
  margin-top: 30px;
}

.copyright {
  font-size: 14px;
  color: #ffffff;
  padding-left: 95px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 80px;
}

@media (min-width: 1367px) {
  .social-icons {
    padding-right: clamp(
      80px,
      calc(80px + (640 * ((100vw - 1366px) / 1286))),
      720px
    );
  }
  .copyright {
    padding-left: clamp(
      95px,
      calc(95px + (655 * ((100vw - 1366px) / 1286))),
      750px
    );
  }
}

.social-icons span {
  margin-right: 10px;
  color: rgb(255, 255, 255);
}

/*footer-arrow*/
.footer-arrow {
  display: none;
}

@media (max-width: 1024px) {
  .footer {
    padding: 50px 0 20px 0;
    margin-top: 50px;
  }

  .footer-container {
    flex-direction: column;
    align-items: left;
    text-align: left;
  }

  .footer-column {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
    padding-left: 0 !important;
  }

  .footer-column:nth-child(2) {
    padding-left: 0;
  }

  .footer-column p {
    margin-left: 0;
  }

  .footer-column .contact-list li:not(:first-of-type) strong {
    padding-left: 0;
  }

  .payment-icons {
    justify-content: center;
  }

  .payment-icons img {
    width: 250px;
    margin-left: 0;
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
  }

  .copyright {
    padding-left: 0;
    margin-bottom: 15px;
  }

  .social-icons {
    padding-right: 0;
  }

  .footer-arrow {
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
  }

  .footer-arrow-icon {
    transition: transform 0.3s ease;
  }

  .footer-column.active .footer-arrow-icon {
    transform: rotate(180deg);
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 40px 0 15px 0;
    margin-top: 40px;
  }

  .footer-column {
    max-width: 100%;
  }

  .payment-icons img {
    width: 200px;
    margin: -20px 0px 0 -150px;
  }

  .footer-arrow {
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
  }

  .footer-arrow-icon {
    transition: transform 0.3s ease;
  }

  .footer-column.active .footer-arrow-icon {
    transform: rotate(180deg);
  }
}

/*------------------------------------

Page offres

------------------------------------*/

/*Offres Spéciales*/
.container-offres {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border-radius: 10px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  gap: 30px;
  margin-top: -30px;
}

.main-offres {
  overflow: hidden;
  background: #f5f5f5;
  padding: 0 0 20px 0;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 540px;
}

.main-offry {
  overflow: hidden;
  background: #ffffff;
  padding: 0 0 20px 0;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 540px;
}

.offres-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
  margin-top: 50px;
  text-align: center;
}

.galaxy-a img {
  width: 100%;
  object-fit: cover;
  padding-bottom: 20px;
}

.main-offres button {
  background-color: black;
  color: white;
  padding: 15px 75px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 30px;
}

.main-offry button {
  background-color: black;
  color: white;
  padding: 15px 75px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 30px;
}

.main-offres button:hover {
  background-color: #333;
}

.main-offry button:hover {
  background-color: #333;
}

@media screen and (max-width: 768px) {
  .container-offres {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px;
    scroll-padding-left: 0px;
    gap: 10px;
  }

  .container-offres::-webkit-scrollbar {
    display: none;
  }

  .main-offres,
  .main-offry {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    background: #f5f5f5;
    padding: 0 0 20px 0;
    border-radius: 20px;
    text-align: center;
  }

  .main-offry:first-child {
    margin-left: 650px;
  }
}

/*Offres à durée limitée*/
.duree-limitee h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 55px;
  margin-top: 80px;
  text-align: center;
}

.container-grey {
  background-color: #f5f5f5;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  max-width: 1110px;
  width: 100%;
  margin: auto;
  padding: 50px 80px;
  box-sizing: border-box;
}

.limite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 30px;
}

.limite-cart {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  max-width: 400px;
}

.limite-image img {
  max-width: 100%;
  height: auto;
}

.plus {
  text-align: center;
  margin-top: 45px;
}

.plus button {
  padding: 12px 44px;
  background-color: #f5f5f5;
  color: rgb(0, 0, 0);
  border: 1px solid black;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
}

.plus button:hover {
  background-color: #000000;
  color: white;
}

.limite-description {
  padding: 26px 15px 1px 15px;
  border-radius: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.limite-description h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.limite-description p {
  font-size: 15px;
  margin: 0 0 20px 0;
}

.recommended-price {
  color: rgb(75, 75, 235);
  font-size: 13px;
  margin-top: auto;
}

.price {
  display: block;
  color: rgb(0, 0, 0);
  font-weight: bold;
  margin: -5px 0 10px 0;
  font-size: 22px;
}

.limite-description button {
  background-color: black;
  color: white;
  padding: 12px 0;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  width: 100%;
  margin-top: auto;
}

.limite-description button:hover {
  background-color: #333;
}

.limite-grid .limite-cart:nth-child(n + 7) {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, display 0.3s ease allow-discrete;
}

.limite-grid.show-all .limite-cart {
  opacity: 1;
  display: block !important;
}

@starting-style {
  .limite-grid.show-all .limite-cart {
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .limite-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .limite-cart {
    max-width: 100%;
  }
}

/*------------------------------------

Page nouveautes

------------------------------------*/

/*swiper*/
.swiper-wrapper h2 {
  font-size: 32px;
  font-weight: bold;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.swiper-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border-radius: 10px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  gap: 30px;
}

.swiper-item {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 5px;
  width: 200%;
}

.swiper {
  padding-left: 25px;
  min-width: 64%;
  position: relative;
}

.conti {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  text-align: left;
  width: 80%;
  padding-top: 100px;
}

.swiper h1 {
  font-size: 2.5rem;
  font-family: "SamsungOne", sans-serif;
  font-weight: 700;
  color: rgb(0, 0, 0);
}

.swiper p {
  font-size: 1rem;
  font-family: "SamsungOne", arial, sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.swiper button {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 50px;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.swiper button:hover {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.swiper img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.swiper-controls-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 50%;
  margin: 50px 0 0 500px;
}

.swiper-controls-wrapper button {
  font-size: 24px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: #000;
  display: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.indicator {
  flex: 1;
  height: 2px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.bar {
  height: 100%;
  width: 50%;
  background: black;
  transition: width 0.5s ease-in-out;
}

@media (max-width: 1240px) {
  .swiper-item {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    padding-bottom: 10px;
  }

  .swiper:first-child {
    margin-left: -20px;
  }

  .swiper-controls-wrapper {
    display: none;
  }

  .swiper {
    flex: 0 0 100%;
  }
}

/*nos meilleures ventes*/
.meilleures-ventes h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 55px;
  margin-top: 80px;
  text-align: center;
}

.container-vente {
  background-color: #f5f5f5;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  max-width: 1130px;
  width: 100%;
  margin: auto;
  padding: 80px 80px;
  box-sizing: border-box;
}

.meilleure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 30px;
}

.meilleure-cart {
  position: relative;
  background: white;
  border-radius: 10px;
  padding: 80px 20px 30px 20px;
  text-align: center;
  max-width: 400px;
}

.nouveau-label {
  position: absolute;
  background-color: #5884ff;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 50px;
  top: 15px;
  left: 20px;
}

.meilleure-image img {
  max-width: 100%;
  height: auto;
}

.meilleure-description {
  padding: 26px 15px 1px 15px;
  border-radius: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.meilleure-description h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.meilleure-description p {
  font-size: 15px;
}

.color-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 15px;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

.color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.color-circle.active {
  border: 2px solid black;
}

.reco-price {
  color: rgb(75, 75, 235);
  font-size: 13px;
  padding-top: 15px;
}

.pric {
  display: block;
  color: rgb(0, 0, 0);
  font-weight: bold;
  margin: -5px 0 10px 0;
  font-size: 22px;
}

.meilleure-description button {
  background-color: black;
  color: white;
  padding: 12px 0;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  width: 100%;
  margin-top: auto;
}

.meilleure-description button:hover {
  background-color: #333;
}

.meilleure-dots {
  display: inline-flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background-color: #ffffff;
  margin-top: 20px;
}

.doti {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background-color: gray;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.doti.active {
  background-color: black;
}

@media (max-width: 820px) {
  .meilleure-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .container-vente {
    padding: 60px 20px;
  }

  .meilleure-cart {
    max-width: 100%;
    padding: 60px 15px 25px 15px;
  }

  .meilleure-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    padding: 8px;
  }
}

/*un monde ouvert...*/
.container-monde {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  margin-top: -30px;
  padding-right: 15px;
}

.monde-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 80px 0;
  text-align: center;
}

.galaxy-design {
  position: relative;
}

.galaxy-design img {
  width: calc(100% + 20px);
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  text-align: left;
  padding: 10px 20px;
  border-radius: 12px;
  max-width: 90%;
}

.text-overlay h3 {
  font-size: clamp(24px, 3vw, 48px);
  padding-bottom: 15px;
}

.text-overlay p {
  font-size: clamp(12px, 1.3vw, 20px);
}

@media (max-width: 1240px) {
  .container-monde {
    padding: 0 15px;
  }

  .galaxy-design {
    width: 100%;
  }

  .galaxy-design img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .text-overlay {
    top: 3%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
  }

  .text-overlay h3 {
    font-size: clamp(25px, 3vw, 37px);
    font-weight: 700;
    padding-bottom: 15px;
  }

  .text-overlay p {
    font-size: clamp(18px, 2vw, 23px);
  }
}

/*2 photo */
.container-colab {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  gap: 30px;
  margin-top: 25px;
}

.main-galaxy {
  overflow: hidden;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 550px;
  position: relative;
}

.main-colab {
  overflow: hidden;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 550px;
  position: relative;
}

.galaxy-m img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.ai-overlay {
  position: absolute;
  top: 18%;
  transform: translate(14%, -50%);
  color: rgb(0, 0, 0);
  text-align: left;
  padding: 10px 20px;
  border-radius: 12px;
  max-width: 90%;
}

.ai-overlay h3 {
  font-size: clamp(30px, 2vw, 30px);
  padding-bottom: 15px;
}

.ai-overlay p {
  font-size: clamp(15px, 1vw, 15px);
}

.score-overlay {
  position: absolute;
  top: 80%;
  transform: translate(14%, -50%);
  color: rgb(0, 0, 0);
  text-align: left;
  padding: 10px 20px;
  border-radius: 12px;
  max-width: 90%;
}

.score-overlay h3 {
  font-size: clamp(30px, 2vw, 30px);
  padding-bottom: 15px;
}

.score-overlay p {
  font-size: clamp(15px, 1vw, 15px);
}

@media (max-width: 768px) {
  .container-colab {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .main-galaxy,
  .main-colab {
    max-width: 100%;
  }

  .ai-overlay {
    top: 3%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
  }

  .ai-overlay h3 {
    font-size: clamp(25px, 3vw, 37px);
    font-weight: 700;
    padding-bottom: 15px;
  }

  .ai-overlay p {
    font-size: clamp(18px, 2vw, 23px);
  }

  .score-overlay {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
  }

  .score-overlay h3 {
    font-size: clamp(25px, 3vw, 37px);
    font-weight: 700;
    padding-bottom: 15px;
  }

  .score-overlay p {
    font-size: clamp(18px, 2vw, 23px);
  }
}

@media (min-width: 769px) and (max-width: 950px) {
  .ai-overlay {
    position: absolute;
    top: 20%;
    transform: translate(10%, -50%);
    color: rgb(0, 0, 0);
    text-align: left;
    padding: 10px 20px;
    border-radius: 12px;
    max-width: 90%;
  }

  .ai-overlay h3 {
    font-size: clamp(20px, 2vw, 20px) !important;
    padding-bottom: 15px;
  }

  .ai-overlay p {
    font-size: clamp(10px, 1vw, 10px) !important;
  }

  .score-overlay {
    position: absolute;
    top: 80%;
    transform: translate(10%, -50%);
    color: rgb(0, 0, 0);
    text-align: left;
    padding: 10px 20px;
    border-radius: 12px;
    max-width: 90%;
  }

  .score-overlay h3 {
    font-size: clamp(20px, 2vw, 20px) !important;
    padding-bottom: 15px;
  }

  .score-overlay p {
    font-size: clamp(10px, 1vw, 10px) !important;
  }
}

/*photo*/
.container-ouvert {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  margin-top: 25px;
  padding-right: 15px;
}

.galaxy-l img {
  width: calc(100% + 20px);
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.galaxy-l {
  position: relative;
}

.desing-overlay {
  position: absolute;
  top: 50%;
  left: 26%;
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  text-align: left;
  padding: 10px 20px;
  border-radius: 12px;
  max-width: 90%;
}

.desing-overlay h3 {
  font-size: clamp(24px, 3vw, 48px);
  padding-bottom: 15px;
}

.desing-overlay p {
  font-size: clamp(12px, 1.3vw, 20px);
}

@media (max-width: 1240px) {
  .container-ouvert {
    padding: 0 15px;
  }

  .galaxy-l {
    width: 100%;
  }

  .galaxy-l img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .desing-overlay {
    top: 3%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
  }

  .desing-overlay h3 {
    font-size: clamp(25px, 3vw, 37px);
    font-weight: 700;
    padding-bottom: 15px;
  }

  .desing-overlay p {
    font-size: clamp(18px, 2vw, 23px);
  }
}
