/* Normalization */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: Helvetica, Arial, Helvetica, sans-serif;
}
/* Root */
:root {
  --page-padding: 0px 8%;
  --main-bg: #f8f8f8;
  --box-bg: #ebebebe8;
  --nav-bg: rgb(240, 235, 235);
  --name-color: #232323;
  --header-btnH-color: #0e7fdb;
  --header-Card-color: #0e7fdb41;
  --card-bg-text: #343434;
  --shadow: black;
  --Box-shadow: #2323239f;
  --shadow-btn: #232323;
  --footer-bg: white;
  --modal-bg: rgb(0, 0, 0);
}
.dark:root {
  --main-bg: #000000;
  --box-bg: #0e0e0ef8;
  --nav-bg: #0e0e0ef8;
  --name-color: #f8f8f8;
  --header-btnH-color: #b8860b;
  --header-Card-color: #b8870b3f;
  --card-bg-text: #ffffff;
  --Box-shadow: #ffffffa8;
  --shadow-btn: #000000;
  --footer-bg: rgb(0, 0, 0);
  --modal-bg: rgb(255, 255, 255);
}
html {
  background-color: var(--main-bg);
  transition: all 0.5s;
  color: var(--name-color);
  scroll-behavior: smooth;
  user-select: none;
}
/* Start nav style */
/* hamburger menu start style */
i.hamburger-menu {
  font-size: 2.2em;
  cursor: pointer;
  transition: all 0.5s;
  display: none; /* default sembunyi (kecuali di mobile) */
}
i.hamburger-menu:hover {
  color: var(--header-btnH-color);
}

.nav-items {
  position: relative;
}

/* default hidden */
ul.hamburger-menu-items {
  opacity: 0;
  flex-direction: column;
  visibility: hidden;
  position: absolute;
  right: 10px;
  top: 90px; /* biar muncul di bawah navbar */
  background-color: var(--nav-bg);
  padding: 5px 10px; /* diperkecil */
  height: 0;
  overflow: hidden;
  user-select: none;
  transition: all 0.3s ease;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

ul.hamburger-menu-items a {
  display: block;
  opacity: 0;
  padding: 6px 10px; /* lebih rapat */
  font-size: 0.95em; /* font lebih kecil sedikit */
  color: var(--name-color);
  transition: all 0.3s ease;
  border-radius: 4px;
}

ul.hamburger-menu-items a:hover {
  background: var(--header-btnH-color);
  color: #fff;
}

/* ketika aktif */
ul.hamburger-menu-items.show {
  visibility: visible;
  opacity: 1;
  height: auto;
}

ul.hamburger-menu-items.show a {
  opacity: 1;
}

/* tampilkan hamburger icon di layar kecil */
@media (max-width: 768px) {
  i.hamburger-menu {
    display: block;
  }
}

/* sembunyikan hamburger menu di desktop */
@media (min-width: 1000px) {
  ul.hamburger-menu-items {
    display: none !important;
  }
}

/* hamburger menu End style */

nav {
  background-color: var(--nav-bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: -1px -9px 20px var(--header-btnH-color);
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: var(--page-padding);
}
li#Logo-brandname {
  display: flex;
  gap: 1px;
  flex-direction: row;
  align-items: center;
}
li#Logo-brandname #Logo {
  cursor: pointer;
  width: 80px;
  transition: all 0.5s;
}
li#Logo-brandname #Logo:hover {
  scale: 1.1;
}
.Login-Register, .Login-Register-menu {
  color: white !important;
  background-color: var(--shadow);
  border: 1px solid var(--name-color);
  padding: 10px 30px;
  font-size: 0.9em;
  transition: all 0.5s;
}
.Login-Register:hover , .Login-Register-menu:hover {
  color: white !important;
  background-color: var(--header-btnH-color);
}
.mode-switch {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--header-btnH-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  cursor: pointer;
}
.mode-switch:hover {
  color: var(--name-color);
}
h1 {
  color: var(--header-btnH-color);
  font-size: 2em;
  font-family: "Courier New", Courier, monospace;
}
a.Search,
a.Cars {
  margin-top: 10px;
}
header nav ul li.pages {
  display: flex;
  align-items: center;
  gap: 30px;
}
header nav ul li a {
  color: var(--name-color) !important;
  transition: all 0.5s;
}
ul#nav-items a.Home::before {
  content: "";
  position: absolute;
  bottom: 33%;
  width: 0;
  height: 1.5px;
  transition: all 0.5s;
  background-color: var(--header-btnH-color);
}
ul#nav-items li.pages a.Home:hover::before {
  width: 2.6%;
}
ul#nav-items a.Car-Shop-1::before {
  content: "";
  position: absolute;
  bottom: 33%;
  width: 0;
  height: 1.5px;
  transition: all 0.5s;
  background-color: var(--header-btnH-color);
}
ul#nav-items li.pages a.Car-Shop-1:hover::before {
  width: 5%;
}
ul#nav-items a.Car-Shop-2::before {
  content: "";
  position: absolute;
  bottom: 33%;
  width: 0;
  height: 1.5px;
  transition: all 0.5s;
  background-color: var(--header-btnH-color);
}
ul#nav-items li.pages a.Car-Shop-2:hover::before {
  width: 4.1%;
}
ul#nav-items a.Search {
  padding-bottom: 6px;
}
ul#nav-items a.Search::before {
  content: "";
  position: absolute;
  bottom: 33%;
  width: 0;
  height: 1.5px;
  transition: all 0.5s;
  background-color: var(--header-btnH-color);
}
ul#nav-items a.Search:hover::before {
  width: 3%;
}
ul#nav-items a.Cars {
  padding-bottom: 6px;
}
ul#nav-items a.Cars::before {
  content: "";
  position: absolute;
  bottom: 33%;
  width: 0;
  height: 1.5px;
  transition: all 0.5s;
  background-color: var(--header-btnH-color);
}
ul#nav-items a.Cars:hover::before {
  width: 3.5%;
}
header nav ul li a:hover {
  color: var(--header-btnH-color) !important;
}
/* End nav style */
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000c3;
}

.modal-content {
  background-color: var(--modal-bg);
  margin: 22% auto;
  padding: 20px;
  width: 23%;
  position: relative;
  border-radius: 15px;
}
.modal-content a {
  cursor: pointer;
  color: var(--main-bg);
  transition: all 0.5s;
}
.modal-content a:hover {
  color: var(--header-btnH-color);
}
.modal-content a::before {
  content: "";
  position: absolute;
  bottom: 25%;
  width: 0%;
  height: 1.5px;
  transition: all 0.5s;
  background-color: var(--header-btnH-color);
}
.modal-content a:hover::before {
  width: 48%;
}
.close {
  color: var(--main-bg);
  float: right;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  top: -6px;
  cursor: pointer;
  transition: all 0.5s;
}
.close:hover {
  scale: 1.3;
  color: var(--header-btnH-color);
}
/* Start section-1 style */
header .section-1 {
  position: relative;
  margin-top: 65px;
  padding: 80px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;

  /* Background full */
  background: url('../Assets/Product/BACKROUND.jpeg') no-repeat center center;
  background-size: 100% 100%; /* paksain full */
  
  /* Kalau mau tetap ada sudut bulat hapus aja ini */
  border-radius: 0; 
  color: #fff;
  overflow: hidden;
}


/* overlay transparan */
header .section-1::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  border-radius: 12px;
}

/* teks kiri */
header .section-1 .section-1-product-dis {
  position: relative;
  z-index: 2;
  flex: 1 1 400px; /* fleksibel tapi ada batas min */
  max-width: 700px;
}

header .section-1 .section-1-product-dis h3 {
  font-size: clamp(1.5rem, 3vw, 3rem); /* min 24px, max 48px */
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: 800;
  background: rgba(0,0,0,0.5);
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-block;
}

header .section-1 .section-1-product-dis p {
  font-size: clamp(1rem, 1.8vw, 1.4rem); /* min 16px, max 22px */
  margin-bottom: 30px;
  line-height: 1.6;
  background: rgba(0,0,0,0.5);
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-block;
}

header .section-1 .section-1-product-dis a {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem); /* min 14px, max 20px */
  font-weight: bold;
  transition: 0.3s;
  text-decoration: none;
}
header .section-1 .section-1-product-dis a:hover {
  background: #1da851;
}

/* foto kanan */
header .section-1 .section-1-product-img {
  position: relative;
  z-index: 2;
  flex: 1 1 350px; /* ada batas minimum */
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) minmax(150px, 0.9fr);
  grid-template-rows: 1fr 1fr; 
  gap: 15px;
  max-width: 700px;
}

header .section-1 .section-1-product-img .bos1 {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .section-1 .section-1-product-img .bos2,
header .section-1 .section-1-product-img .bos3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* style umum */
header .section-1 .section-1-product-img img {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: 0.3s;
}
header .section-1 .section-1-product-img img:hover {
  transform: scale(1.05);
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  header .section-1 {
    flex-direction: column;
    padding: 50px 5%;
    text-align: center;
  }

  header .section-1 .section-1-product-img {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    max-width: 90%;
  }

  header .section-1 .section-1-product-img .bos1,
  header .section-1 .section-1-product-img .bos2,
  header .section-1 .section-1-product-img .bos3 {
    grid-column: 1;
    width: 100%;
    height: auto; /* biar natural di HP */
  }
}
/* End section-1 style */
/* End header style */

/* Start main style */
/* Start section-2 style */
.section-2 {
  display: flex;
  flex-direction: column;
  margin-top: 8%;
  color: var(--header-btnH-color);
  padding: 0 5%;
}

.section-2 h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  color: var(--header-btnH-color);
}

.section-2 h2 {
  color: var(--name-color);
  margin: 8% 0;
  text-align: center;
}

/* Grid wrapper */
.travel-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px 0;
}

/* Card styling */
.travel-container .card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.travel-container .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.travel-container .card img {
  width: 100%;
  height: 220px;
  object-fit: contain; /* tampil utuh */
  background-color: #fff; /* biar rapi */
}

/* isi card */
.travel-container .card-content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.travel-container .card-content h4 {
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: bold;
  color: #333;
}

.travel-container .card-content p {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 18px;
  color: #555;
}

/* Tombol */
.travel-container .card-buttons {
  display: flex;
  gap: 12px;
}

.travel-container .btn-wa,
.travel-container .btn-info {
  flex: 1;
  text-align: center;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.travel-container .btn-wa {
  background: #25D366;
  color: white;
}

.travel-container .btn-wa:hover {
  background: #1da851;
}

.travel-container .btn-info {
  background: #FFD700;
  color: black;
}

.travel-container .btn-info:hover {
  background: #e6c200;
}

/* Responsif */
@media (max-width: 1200px) {
  .travel-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .travel-container {
    grid-template-columns: 1fr;
  }
  .travel-container .card img {
    height: 180px;
  }
}
/* End section-2 style */
/* Smooth scroll biar enak pas klik link Cars */
html {
  scroll-behavior: smooth;
}

/* Start section-3 style */
.section-3 {
  display: flex;
  flex-wrap: wrap;
  padding: var(--page-padding);
  gap: 40px;
  align-items: flex-start;
}

/* Deskripsi kiri */
.section-3 .section-3-Description-div {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-3 .section-3-Description-div h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--header-btnH-color);
  font-weight: 700;
}

.section-3 .section-3-Description-div p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--name-color);
}

.section-3 .section-3-Description-div div {
  margin-top: 40px;
}

.section-3 .section-3-Description-div div a {
  color: var(--name-color);
  border: 2px solid var(--name-color);
  padding: 12px 35px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  border-radius: 9px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.section-3 .section-3-Description-div div a:hover {
  background-color: var(--header-btnH-color);
  color: white;
  border-color: var(--header-btnH-color);
}

/* Grid produk mobil */
.section-3 .section-3-product-div {
  flex: 2 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Setiap card mobil */
.section-3 .section-3-product-div > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-3 .section-3-product-div > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Gambar mobil */
.section-3 .section-3-product-div img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.section-3 .section-3-product-div img:hover {
  transform: scale(1.05);
}

/* Teks mobil */
.section-3 .section-3-product-div p.car-number {
  font-size: 0.9em;
  opacity: 0.7;
  margin-bottom: 4px;
}

.section-3 .section-3-product-div p.price {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--header-btnH-color);
  position: relative;
}

.section-3 .section-3-product-div p.price::after {
  content: "";
  display: block;
  margin: 5px auto 0;
  width: 40px;
  height: 2px;
  background-color: var(--header-btnH-color);
  opacity: 0.6;
  border-radius: 2px;
}
/* End section-3 style */
/* Start section-4 style */
.section-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 80px auto;
  padding: 0 var(--page-padding);
  max-width: 1200px;
}

/* Card wrapper */
.section-4-product {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--box-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-4-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Gambar full (tanpa crop) */
.section-4 img {
  width: 100%;
  height: auto; /* biar proporsional */
  border-radius: 15px 15px 0 0;
  object-fit: contain; /* pastikan gambar full kelihatan */
  background: #000; /* kasih background hitam biar rapi kalau gambar beda rasio */
  transition: transform 0.5s ease;
}

.section-4-div-img {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.section-4-div-img:hover img {
  transform: scale(1.03);
}

/* Kartu teks di gambar */
.img-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--box-bg);
  width: 180px;
  height: 75px;
  box-shadow: -4px 3px 10px 0px var(--header-btnH-color);
  border-radius: 8px 0 0 8px;
  transition: all 0.3s ease;
}

.img-cards p {
  margin: 2px 15px;
  font-size: 0.9em;
  color: var(--header-btnH-color);
}

.img-cards p:first-child {
  font-size: 0.75em;
  opacity: 0.8;
}

.img-cards:hover {
  right: 10px;
  border-radius: 8px;
  box-shadow: -2px 2px 12px 2px var(--shadow);
}

/* Deskripsi */
.section-4-Description {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-4-Description p:first-child {
  font-size: 0.9em;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.section-4-Description p:last-child {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--name-color);
}

/* Responsif */
@media (max-width: 992px) {
  .section-4 {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-4 {
    flex-direction: column;
    gap: 40px;
  }

  .section-4-product {
    width: 100%;
  }

  .img-cards {
    width: 150px;
    height: 65px;
  }

  .section-4-Description p:last-child {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .img-cards {
    width: 130px;
    height: 55px;
  }
  .section-4-Description {
    padding: 15px;
  }
}
/* End section-4 style */
/* Start section-5 style */
.section-5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: auto;
  padding: 40px 20px;
}

.section-5 h2 {
  margin: 10px 0px 30px 0px;
  font-size: 1.8em;
  line-height: 1.4em;
}

.section-5 h2 span {
  color: var(--header-btnH-color);
}

.section-5 .btn-wa a {
  display: inline-block;
  color: white;
  background-color: var(--shadow);
  border: 1px solid var(--name-color);
  padding: 15px 50px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.section-5 .btn-wa a:hover {
  background-color: var(--header-btnH-color);
  transform: scale(1.05);
}

/* Lokasi Title */
.lokasi-title {
  text-align: center;
  margin: 30px 0 10px 0;
  font-size: 1.4em;
  color: var(--header-btnH-color);
  font-weight: bold;
}

/* Map Container (biar responsif) */
.map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding-bottom: 56.25%; /* 16:9 */
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsif */
@media (max-width: 768px) {
  .section-5 h2 {
    font-size: 1.4em;
  }
  .section-5 .btn-wa a {
    padding: 12px 35px;
    font-size: 0.9em;
  }
  .lokasi-title {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .section-5 h2 {
    font-size: 1.2em;
  }
  .section-5 .btn-wa a {
    padding: 10px 28px;
    font-size: 0.85em;
  }
  .lokasi-title {
    font-size: 1em;
  }
}
/* End section-5 style */
/* End main style */
/* Start Footer style */
footer {
  background: var(--box-bg);
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0px -10px 20px -20px var(--header-btnH-color);
}

footer .title h2 {
  color: var(--header-btnH-color);
  font-family: "Courier New", Courier, monospace;
  font-size: 2em;
  margin-bottom: 10px;
}

footer .logo-text {
  font-size: 0.9em;
  opacity: 0.7;
  margin-bottom: 20px;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

footer .social-icons a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.3s ease;
}

footer .social-icons a img:hover {
  transform: scale(1.15);
}

/* Under footer */
.under-footer-dis {
  text-align: center;
  padding: 15px;
  font-size: 0.85em;
  opacity: 0.6;
}
/* End Footer style */
.under-footer-dis {
  padding: 50px 0px;
  text-align: center;
}
/* animation for hidden iteams*/
/* animation 1 */
.hidden {
  opacity: 0;
  transition: all 2s;
  transform: translateX(100%);
}
/* animation 2 */
.hiddenP {
  opacity: 0;
  scale: 0.9;
  transition: all 1.3s;
}
/* animation 3 */
.hiddenCardsOne {
  opacity: 0;
  transition: all 1.5s;
  transform: translateX(100%);
}
.hiddenCardsTwo {
  opacity: 0;
  transition: all 1.5s;
  transform: translateX(-100%);
}
/* animation 4 */
.up-hidden-input {
  opacity: 0;
  transition: all 1.5s;
  transform: translatey(100%);
}
/*Show*/
.show {
  opacity: 1;
  scale: 1;
  transform: translateX(0);
  transform: translatey(0);
}
/* animation footer */
.up-hidden {
  opacity: 0;
  transition: all 1.5s;
  transform: translatey(100%);
}
.up-show {
  transform: translatey(0%);
  opacity: 1;
}
@media screen and (max-width: 1490px) {
  .section-3 .section-3-product-div img {
    width: 180px;
  }
  .section-3 .section-3-Description-div div a {
    font-size: 0.7em;
  }
  .section-3 .section-3-product-div {
    font-size: 0.8em;
  }
  .section-4 {
    display: flex;
    justify-content: center;
  }
  .section-4 img {
    width: 500px;
  }
  .section-4 div.section-4-div-img {
    width: 500px;
  }
  .section-4 .section-4-Description p {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 1420px) {
  .section-3 .section-3-product-div img {
    width: 150px;
  }
  .section-3 div.section-3-product-div {
    justify-content: center;
  }
  .section-3 .section-3-Description-div {
    gap: 10px;
  }
  p.price::after {
    opacity: 0;
  }
}
@media screen and (max-width: 1420px) {
  .section-2-product-div div img {
    width: 250px;
  }
}
@media screen and (max-width: 1220px) {
  .section-3 .section-3-Description-div div {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1210px) {
  header .section-1 div.section-1-product-dis {
    margin-top: 6%;
  }
  header .section-1 div h3 {
    font-size: 2em;
  }
  header .section-1 div p {
    margin-top: 35px;
    font-size: 1em;
  }
  header .section-1 > div > a {
    bottom: -50px;
  }
  .section-2-product-div div img {
    width: 220px;
  }
  .section-3-product-div {
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1000px) {
  nav {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  }
  i.hamburger-menu {
    display: block;
  }
  li.pages a {
    display: none;
  }
  li.pages button {
    position: absolute;
    right: 15%;
    top: 28.2%;
    width: 30px;
  }
  header .section-1 div.section-1-product-dis {
    margin-top: 6%;
  }
  header .section-1 div h3 {
    font-size: 1.6em;
  }
  header .section-1 div p {
    margin-top: 35px;
    font-size: 0.7em;
  }
  header .section-1 > div > a {
    bottom: -50px;
    padding: 10px 35px;
    font-size: 0.8em;
  }
  .section-2 h2 {
    font-size: 1.4em;
  }
  .section-2-product-div div img {
    width: 180px;
  }
  .section-2 h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    padding: var(--page-padding);
    margin-left: 15px;
  }
}
@media screen and (max-width: 900px) {
  img#section-1-product-img-1 {
    width: 400px;
    border-radius: 20px;
  }
  header .section-1 div.section-1-product-dis {
    margin-top: 6%;
  }
  header .section-1 div h3 {
    font-size: 1.1em;
  }
  header .section-1 div p {
    margin-top: 35px;
    font-size: 0.5em;
  }
  header .section-1 > div > a {
    bottom: -50px;
    padding: 10px 35px;
    font-size: 0.8em;
  }
  div.section-2-product-div div img {
    width: 170px;
  }
}
@media screen and (max-width: 790px) {
  .section-5 {
    display: none;
    opacity: 0;
  }
  div.section-2-product-div div img {
    width: 160px;
  }
  .section-3 .section-3-Description-div div {
    margin-top: 20px;
  }
  .section-3 .section-3-Description-div div a {
    padding: 10px 20px;
    font-size: 0.8em;
  }
}
@media screen and (max-width: 750px) {
  img#section-1-product-img-1 {
    width: 300px;
    border-radius: 20px;
  }
  div.section-2-product-div div img {
    width: 140px;
  }
  .section-3 .section-3-Description-div div {
    margin-top: 20px;
  }
}
@media screen and (max-width: 650px) {
  div.section-2-product-div div img {
    width: 125px;
  }
  .section-3 .section-3-Description-div div {
    margin-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  img#section-1-product-img-1 {
    width: 250px;
    border-radius: 20px;
  }
  div.section-1-div-product-img-1 {
    margin-bottom: 40px;
  }

  header .section-1 div.section-1-product-dis {
    margin-top: 7%;
  }
  header .section-1 div h3 {
    font-size: 1em;
  }
  header .section-1 div p {
    margin-top: 35px;
    font-size: 0.4em;
  }
  header .section-1 > div > a {
    bottom: -40px;
    padding: 5px 25px;
    font-size: 0.7em;
  }
  .section-2 h2 {
    font-size: 0.8em;
  }
  .section-3 .section-3-Description-div h3 {
    font-size: 1.5em;
  }
  .section-3 .section-3-Description-div p {
    font-size: 0.9em;
  }
  .section-3 .section-3-Description-div div {
    margin-top: 20px;
  }
  .section-3 .section-3-Description-div div a {
    padding: 15px 25px;
    font-size: 0.6em;
  }
  .section-4 img {
    width: 400px;
  }
  .section-4 div.section-4-div-img {
    width: 400px;
  }
  .section-4 div.img-cards {
    width: 150px;
    height: 80px;
  }
  .section-4 div.img-cards p {
    font-size: 0.9em;
  }
  footer div.title {
    display: none;
    opacity: 0;
  }
  footer div.lang {
    opacity: 0;
    display: none;
  }
  footer {
    /* flex-direction: column; */
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  li.pages button {
    position: absolute;
    right: 18%;
    top: 28.2%;
    width: 30px;
  }
  header .section-1 {
    margin-top: 15px;
  }
  img#section-1-product-img-1 {
    width: 200px;
    border-radius: 20px;
    height: 155px;
  }
  header .section-1 div h3 {
    font-size: 0.8em;
  }
  header .section-1 div p {
    margin-top: 20px;
    font-size: 0.4em;
  }
  header .section-1 > div > a {
    bottom: -20px;
    padding: 5px 10px;
    font-size: 0.5em;
  }
  .section-2 {
    margin-top: 5px;
  }
  div.section-2-product-div div img {
    width: 100px;
    border-radius: 9px;
  }
  div.section-2-product-div div p {
    font-size: 0.7em;
  }
  .section-2 h3 {
    font-size: 1em;
    margin-bottom: 10px;
    position: relative;
    left: -42px;
  }
  .section-3 .section-3-Description-div h3 {
    font-size: 1.2em;
  }
  .section-3 .section-3-Description-div p {
    font-size: 0.8em;
  }
  .section-3 .section-3-Description-div div {
    margin-top: 20px;
  }
  .section-3 .section-3-Description-div div a {
    padding: 7px 15px;
    font-size: 0.6em;
    border-radius: 9px;
    transition: all 0.5s;
  }
  div.section-3-product-div div img {
    width: 120px !important;
  }
  .section-4 {
    margin-top: 10px;
  }
  .section-4 img {
    width: 300px;
  }
  .section-4 div.section-4-div-img {
    width: 300px;
  }
  .section-4 div.img-cards {
    width: 120px;
    height: 60px;
  }
  .section-4 div.img-cards p {
    font-size: 0.7em;
  }
  .section-4 div.img-cards {
    width: 120px;
    height: 60px;
  }
  .section-4 div.img-cards p {
    font-size: 0.7em;
  }
  .section-4-product-div-1 {
    margin-left: 30px;
  } 
  
}
