/* Color library
default : #1f4390;
Christmas : #C7322F;
Lebaran :#16a34a;
Imlek : #FFD700;
*/
:root {
  --primary: #f9ef21;
  --subprimary: #f7b963;
  --thirdary: #e9078f;
  --edition: #1f4390;
  --secondary: #1f4390;
  --tertiary: #000;
  --contrast: #eeeeef;
  --Lebaran: #16a34a;
  --Christmas: #c7322f;
  --Imlek: #ffd700;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

header {
  width: 100%;
  max-width: 80%;
  margin: auto;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

body {
  font-family: "ubuntu", sans-serif;
  background-color: var(--contrast);
  color: var(--Tersier);
  overflow-x: hidden;
  /*min-height: 2000px;*/
}

/* Navbar Styles */
.navbar {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 7%;
  background-color: rgba(30, 66, 143, 0.8);
  box-shadow: 2px 2px 15px rgba(1, 1, 3, 1);
  position: fixed;
  top: 0;
  /* Default posisi saat navbar ditampilkan */
  left: 0;
  right: 0;
  z-index: 9999;
  transition: top 0.3s ease;
  /* Smooth transition untuk hide dan show */
}

/* Ketika navbar disembunyikan */
.navbar-hide {
  top: -100px;
  /* Geser navbar ke atas, di luar viewport */
}

/* Ketika navbar ditampilkan */
.navbar-show {
  top: 0;
  /* Posisi awal ketika ditampilkan */
}

.navbar .navbar-logo {
  display: -webkit-flex;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  align-items: center;
  color: var(--contrast);
}

img {
  margin-right: 10px;
}

.navbar .navbar-nav .navbar-nav-menu {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.navbar .navbar-nav .navbar-nav-menu a {
  color: var(--contrast);
  display: inline-block;
  font-size: 100%;
  margin-right: 1.5rem;
}

.navbar .navbar-nav .navbar-nav-menu a:hover {
  color: var(--primary);
}

.navbar .navbar-nav .navbar-nav-menu a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid var(--contrast);
  transform: scaleX(0);
  transition: 0.2s linear;
}

.navbar .navbar-nav .navbar-nav-menu a:hover::after {
  transform: scaleX(0.5);
}

.navbar .navbar-extra ul {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.navbar .navbar-extra a {
  color: var(--contrast);
  justify-content: space-between;
  margin: 0 1rem;
}

.navbar .navbar-extra a:hover {
  color: var(--primary);
  margin: 0 1rem;
}

#nav-get-in-touch {
  border-style: solid;
  border-width: 2px;
  border-radius: 2rem;
  padding: 0.3rem 0.5rem;
}

#hamburger-menu {
  display: none;
}

/* ------ Navbar Ends ------ */

#content {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

#content.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

/* ------ Benner Start ------ */
/* Slider Container Styles */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  /* Full viewport height */
  background-color: #eeeeef;
  overflow: hidden;
}

.benner-slides {
  display: -webkit-flex;
  display: flex;
  transition: transform 1s ease-in-out;
  /* Adjust timing as needed */
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--contrast);
  border: none;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 10;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Dots Navigation */
.dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: -webkit-flex;
  display: flex;
}

.dot {
  height: 3px;
  width: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary);
}

/* ------ Benner Ends ------ */

/* ------ Explore Start ------ */
/* ---- Category Section ----*/
.category-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.category-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.category-title {
  position: relative;
  left: 40%;
  font-size: 100px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 5px var(--edition);
  margin-top: 20%;
  line-height: 1.2;
  /* Adjust line height for better spacing */
  text-align: left;
  /* Align the title to the left */
  user-select: none;
}

.image-container {
  position: absolute;
  bottom: 0%;
  left: 10%;
  margin: 20px;
  z-index: 0;
  /* Ensure the image is below the category slide */
  border-radius: 30px;
  background-color: var(--edition);
  user-select: none;
}

.category-image {
  width: 550px;
  height: auto;
  border-radius: 30px;
  user-select: none;
}

.category-slider-container {
  display: flex;
  justify-content: start;
  position: relative;
  width: 54.5%;
  border-radius: 30px;
  z-index: 1;
  /* Bring the category slider to the front */
  margin-left: 25%;
  /* Move the category container to the right */
  overflow: hidden;
  background-color: var(--contrast);
  border: 20px solid var(--contrast);
  cursor: grab;
}

.category-slider-container.grabbing {
  cursor: grabbing;
}

.category-slider-container::-webkit-scrollbar {
  display: none;
}

.category-slider {
  display: flex;
  position: relative;
  bottom: 0%;
  left: -1%;
  gap: 20px;
  padding: 20px;
  border-radius: 30px;
  will-change: transform;
  white-space: nowrap;
  transition: transform 0.5s ease-out;
}

.category-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 180px;
  /* Ensure all cards have the same width */
  height: 140px;
  /* Reduce the height of the cards */
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Center align all elements inside the card */
}

.category-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  user-select: none;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--edition);
  text-decoration: none;
  text-wrap: wrap;
  display: block;
  margin-top: 10px;
  /* Add margin to separate the title from the image */
  user-select: none;
}

.card-title:hover {
  color: var(--subprimary);
}

.category-card:hover {
  scale: 110%;
}

/* --------- --------- --------*/
/* ------- Promo Product Section ------ */
.promo-title-container {
  display: block;
  position: relative;
  justify-content: center;
  /* Center content vertically */
  align-items: center;
  top: 2rem;
  padding: 1rem 9%;
}

.promo-title-container .promo-title {
  position: relative;
  left: 3rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.promo-title-container .promo-deskripsi {
  position: relative;
  left: 3rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--tertiary);
}

.promo-title-container span {
  font-weight: 700;
  color: var(--edition);
}

/* ------- Coundown Section ----- */
.countdown {
  width: 15rem;
  background-color: var(--primary);
  border-radius: 15px;
  padding: 10px 15px;
  /* Reduced padding */
  font-size: 15px;
  font-weight: bold;
  color: var(--edition);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  top: -5%;
  float: right;
  right: 15%;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  /* Reduced gap */
}

.countdown .days,
.countdown .time {
  color: var(--contrast);
  font-size: 15px;
  /* Slightly smaller font-size */
}

.countdown span:not(.days) {
  font-size: 15px;
  /* Adjusted font-size for colons */
  color: var(--contrast);
}

/* Promo Product Slider Container */
.promo-product-slider-container {
  display: flex;
  width: calc(341.5px * 4 + 90px);
  /* Mengakomodasi gap 30px */
  overflow: hidden;
  position: relative;
  left: 11%;
  height: 40rem;
}

.promo-product-slider {
  display: flex;
  padding-left: 1%;
  width: 100%;
  height: 100%;
  gap: 30px;
  align-items: center;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
}

.promo-product-slider:active {
  cursor: grabbing;
}

.promo-product-slider::-webkit-scrollbar {
  display: none;
}

/* Product Card */
.product-container {
  position: relative;
  left: 20%;
  margin-top: 10%;
  display: grid;
  grid-template-columns: repeat(4, 20rem);
  /* 4 kolom */
  gap: 70px;
  /* Jarak antar produk */
  margin-bottom: 5%;
}

/* ------- Promo Produk End------ */

/* ----- Our Partner Logo Slide------ */
.our-partner-logo {
  overflow: hidden;
  padding: 20px 0;
  background-color: var(--edition);
}

.logo-slider-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.logo-slide {
  display: flex;
  flex-wrap: nowrap;
}

.logo-slide img {
  height: 3rem;
  filter: brightness(0) invert(1);
  margin: 10px 60px;
  vertical-align: middle;
}

/* ----- Our Partner Ends ------ */

/* ------ Product New Release Section ----- */
/* ------ Header Section ----- */
.header-new-release {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 400px;
  background-color: #1f4390;
  padding: 20px;
  margin-bottom: 20px;
}

.content-header-new-release {
  display: flex;
  position: relative;
  max-width: 60%;
  align-items: center;
  justify-content: center;
  left: 15%;
}

.content-header-new-release img {
  display: flex;
  position: relative;
  justify-content: center;
  object-fit: cover;
  top: -40%;
  height: 10rem;
  margin-right: 2rem;
}

.header-new-release-title {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  font-size: 6rem;
  color: #eeeeef;
}

.header-new-release-subtitile {
  display: flex;
  white-space: nowrap;
  position: relative;
  right: 40%;
  margin-top: auto;
  font-size: 1.6rem;
  color: var(--primary);
}

/* ---- Title Promo ---- */
.promonewrelease-header {
  display: flex;
  position: relative;
  flex-direction: column;
  top: 30%;
  width: 400px;
  height: 250px;
  padding: 1rem 2%;
  background-color: #eeeeef;
  border-radius: 20px;
  right: 10%;
}

.promonewrelease-header-title {
  display: flex;
  top: 5%;
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 20px;
}

.deskripsi-promonewrelease-header {
  display: flex;
  position: relative;
  bottom: 65%;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
}

.pcta {
  position: relative;
  top: -10%;
  border: none;
  background-color: #1f4390;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  width: fit-content;
  height: fit-content;
  font-size: 16px;
  padding: 10px 20px;
}

.pcta:hover {
  background-color: #e9078f;
}

/* ---- Title Promo Ends---- */
/* ----- Product Spesial Editon ---- */
.spesial-edition-container {
  margin-bottom: 50px;
}

.spesial-edition {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  padding: 1rem 10%;
  column-gap: 30px;
  row-gap: 50px;
  margin-bottom: 30px;
  padding-bottom: 50px;
}

.spesial-edition {
  display: none;
}

.spesial-edition.active {
  display: grid;
}

.newrealese-titile {
  display: inline-flex;
  position: relative;
  left: 10%;
  top: 25%;
  font-size: 3rem;
}

/* ----- Nabar Edition ----- */
.spesialedition-navbar {
  display: flex;
  position: relative;
  right: 12%;
  justify-content: end;
}

.spesialedition-navbar-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.spesialedition-navbar-menu li {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f4390;
  cursor: pointer;
}

.spesialedition-navbar-menu span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tertiary);
}

.spesialedition-navbar-menu li:hover {
  color: var(--thirdary);
}

/* ----- Nabar Edition Ends ----- */
/* Pagination Controls Styling */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.pagination button {
  padding: 0.4rem 0.8rem;
  border: none;
  background-color: #ddd;
  border-radius: 4px;
  cursor: pointer;
}

.pagination button.active {
  background-color: var(--edition);
  color: #fff;
}

/* ----- Service Start ------ */
.service-container {
  background-color: var(--secondary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
}

.produsen {
  flex: 1;
  max-width: 150px;
  margin: 0 10px;
  text-align: center;
  color: var(--contrast);
}

.produsen img {
  width: 50%;
  height: auto;
}

.produsen p {
  margin: 10px 0 0;
  font-size: 14px;
}

.stanby {
  flex: 1;
  max-width: 150px;
  margin: 0 10px;
  text-align: center;
  color: var(--contrast);
}

.stanby img {
  width: 50%;
  height: auto;
}

.stanby p {
  margin: 10px 0 0;
  font-size: 14px;
}

.cs {
  flex: 1;
  max-width: 150px;
  margin: 0 10px;
  text-align: center;
  color: var(--contrast);
}

.cs img {
  width: 50%;
  height: auto;
}

.cs p {
  margin: 10px 0 0;
  font-size: 14px;
}

.ongkir {
  flex: 1;
  max-width: 150px;
  margin: 0 10px;
  text-align: center;
  color: var(--contrast);
}

.ongkir img {
  width: 50%;
  height: auto;
}

.ongkir p {
  margin: 10px 0 0;
  font-size: 14px;
}

.garansi {
  flex: 1;
  max-width: 150px;
  margin: 0 10px;
  text-align: center;
  color: var(--contrast);
}

.garansi img {
  width: 50%;
  height: auto;
}

.garansi p {
  margin: 10px 0 0;
  font-size: 14px;
}

.return {
  flex: 1;
  max-width: 150px;
  margin: 0 10px;
  text-align: center;
  color: var(--contrast);
}

.return img {
  width: 50%;
  height: auto;
}

.return p {
  margin: 10px 0 0;
  font-size: 14px;
}

/* ----- Service End ------ */

/* ------ Store Start ------ */
/* Stores Section */
.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 80vw;
  height: 70vh;
  padding: 20px;
  position: relative;
  margin: auto;
  margin-bottom: 5%;
}

/* Maps and Dropdown Section Container */
.map-dropdown-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Map Container */
.map-container {
  width: 50%;
  height: 100%;
}

iframe {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.5);
}

/* Right side (Dropdown and Store Info) */
.dropdown-store-info {
  width: 45%;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

/* Dropdown button container */
.dropdown-container {
  width: 100%;
  position: relative;
  text-align: center;
}

/* Dropdown button */
.dropdown-btn {
  position: relative;
  /* Allows adjustment using top property */
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary);
  /* Blue background for the button */
  color: #fff;
  /* White text color */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  z-index: 1;
  /* Ensure the button is above the dropdown content */
  width: auto;
  /* Ensure button width is appropriate */
}

/* Dropdown content */
.dropdown-content {
  display: none;
  /* Hidden by default */
  position: absolute;
  top: 100%;
  /* Position below the button */
  left: 0;
  background-color: rgba(30, 66, 143, 0.8);
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  /* Ensure the dropdown content is above other content */
  width: 50%;
  transform: translateX(50%);
  /* Adjust to center relative to button */
}

/* Style for dropdown items */
.dropdown-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-content li {
  color: #eeeeef;
  padding: 12px 16px;
  cursor: pointer;
}

.dropdown-content li:hover {
  border-radius: 9px;
  background-color: var(--primary);
  /* Highlight on hover */
}

/* Store Info Styling */
.store-info {
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 60%;
  margin: 0 auto;
}

.store-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: left;
  /* Aligns heading to the left */
}

.store-info p {
  margin: 8px 0;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  /* Aligns text to the left */
}

.store-info p strong {
  font-weight: bold;
}

/* Style for link in store info */
.store-info a {
  color: #007bff;
  /* Blue color for links */
  text-decoration: none;
}

.store-info a:hover {
  text-decoration: underline;
}

/* Marketplace Links */
.marketplace-links {
  display: flex;
  justify-content: center;
  /* Center logos horizontally */
  align-items: center;
  margin-top: 20px;
}

.marketplace-links a {
  margin: 0 10px;
}

.marketplace-links img {
  width: 30px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.marketplace-links img:hover {
  transform: scale(1.1);
  /* Enlarge on hover */
}

/* ----- Whatsapp FLoat ----- */
.whatsapp-float {
  position: fixed;
  margin-left: 5%;
  width: 50px;
  height: 50px;
  bottom: 1.5%;
  right: 1.5%;
  background-color: var(--subprimary);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.whatsapp-float:hover {
  background-color: var(--primary);
}

.whatsapp-float img {
  position: relative;
  left: 7%;
  width: 30px;
  height: 30px;
}

/* ------ Store Ends ------ */

/* ----- Footer Start ------ */
/* Footer Styles */
.footer {
  background-color: var(--secondary);
  color: var(--contrast);
  padding: 40px 20px;
}

.footer-container {
  margin: auto;
  display: flex;
  flex-direction: column;
}

.footer-content {
  text-align: left;
  margin-bottom: 20px;
}

.footer-content p {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-content a {
  color: var(--contrast);
  font-size: 3rem;
  font-weight: bold;
}

.footer-content a:hover {
  color: var(--primary);
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: flex-start;
  gap: 20rem;
  margin-bottom: 20px;
  align-items: flex-start;
}

/* Grup untuk mengelompokkan kolom */
.footer-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: var(--contrast);
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

/* Pastikan Privacy Policy & Sign-up berada di bawah */
.footer-signup {
  margin-top: 2rem;
}

/* Signup Form */
.signup-form {
  display: flex;
  align-items: center;
  /* Membuat input & button sejajar bawah */
  gap: 10px;
  /* Jarak antar elemen */
  width: 100%;
}

.signup-form input {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-bottom: 2px solid var(--contrast);
  /* Hanya garis bawah */
  background: transparent;
  color: var(--contrast);
  outline: none;
  transition: border-color 0.3s ease;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  /* Warna placeholder lebih lembut */
}

.signup-form input:focus {
  border-bottom: 2px solid var(--primary);
  /* Warna berubah saat fokus */
}

/* Tombol Sign-up */
.signup-form button {
  padding: 10px 20px;
  background-color: transparent;
  color: var(--contrast);
  font-weight: bold;
  border: 2px solid var(--contrast);
  border-radius: 15px;
  cursor: pointer;
  white-space: nowrap;
  /* Mencegah teks dalam button terpotong */
}

.signup-form button:hover {
  border: 2px solid var(--primary);
  color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}

.footer-copyright {
  font-size: 14px;
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--contrast);
  font-size: 3rem;
  font-weight: bold;
  gap: 10px;
}

.footer-brand img {
  width: 100px;
  height: auto;
}

/* ----- Footer Ends ------ */

/*---------------------------------------*/
/* ------ Media Queries ------ */

/* ------ Tablet Resolution ------ */
@media screen and (max-width: 1480px) {
  html {
    font-size: 85%;
  }
}

@media screen and (max-width: 1380px) {
  html {
    font-size: 85%;
  }

  /* ---- Category Section ----*/
  .category-title {
    left: 70%;
    font-size: 80px;
  }

  .image-container {
    bottom: 0%;
    left: 10%;
  }

  .category-image {
    width: 550px;
  }

  .category-slider-container {
    width: 47%;
    margin-left: 35%;
  }

  .category-slider {
    bottom: 0%;
    left: -1%;
    gap: 20px;
    padding: 20px;
  }

  .category-card {
    width: 180px;
    height: 140px;
  }

  /* --------- --------- --------*/
  .promo-product-slider-container {
    width: calc(335px * 3 + 60px);
    /* Mengakomodasi gap 30px */
    left: 11%;
  }
}

@media screen and (max-width: 1280px) {
  html {
    font-size: 85%;
  }

  /* ---- Category Section ----*/
  .category-title {
    left: 50%;
    font-size: 60px;
    font-weight: 700;
    -webkit-text-stroke: 3px var(--edition);
  }

  .image-container {
    left: 11%;
  }

  .category-image {
    width: 450px;
    bottom: 50%;
  }

  .category-slider-container {
    width: 50%;
    margin-left: 35%;
  }

  .category-slider {
    left: -1%;
    gap: 25px;
  }

  .category-card {
    width: 175px;
    height: 140px;
  }

  /* ------- Catergory End --------*/
  .promo-product-slider-container {
    width: calc(335px * 3 + 90px);
    /* Mengakomodasi gap 30px *9*/
    left: 5%;
    margin: 5%;
    height: 60vh;
  }

  .promo-product-slider {
    padding-left: 1%;
  }

  /* Product Card */
  .product-masterbox {
    width: 4rem;
    left: -20%;
    font-size: 25px;
  }

  .product-innerbox {
    width: 4rem;
    left: -25%;
    font-size: 25px;
  }

  .product-image img {
    left: 10%;
  }

  .product-image img.hover-image {
    left: 7%;
  }

  .ratings {
    left: 60%;
  }

  .product-title {
    font-size: 1rem;
    left: 9%;
  }

  .product-deskripsi {
    font-size: 1.5rem;
    left: -1%;
  }

  .product-card:hover .product-detail {
    transform: translate(9%, -25%);
  }

  /* ------- ------- ------- */

  /* ------ Product New Release Section ----- */
  /* ------ Header Section ----- */
  .header-new-release-subtitile {
    right: 43%;
  }

  /* ---- Title Promo ---- */
  .promonewrelease-header {
    top: 30%;
  }

  .promonewrelease-header-title {
    top: 2%;
    font-size: 4.5rem;
  }

  .deskripsi-promonewrelease-header {
    bottom: 80%;
    font-size: 1.5rem;
  }

  .pcta {
    top: -15%;
  }

  /* ---- Title Promo Ends---- */
  /*Store Section*/
  .store-info {
    max-width: 80%;
  }

  .dropdown-content {
    width: 60%;
    left: -10%;
  }

  .map-container {
    width: 60%;
    height: 80%;
  }
}

@media screen and (max-width: 1104px) {

  /*Store Section*/
  .store-info {
    max-width: 80%;
  }

  .dropdown-content {
    width: 60%;
    left: -10%;
  }

  .map-container {
    width: 60%;
    height: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .spesial-edition {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-links {
    gap: 10rem;
    /* Kurangi jarak antar kolom */
  }

  .signup-form {
    flex-direction: column;
    /* Form sign-up tetap rapi jika terlalu sempit */
    align-items: flex-start;
  }

  .signup-form input {
    width: 100%;
    /* Input mengikuti lebar parent */
  }

  .signup-form button {
    width: auto;
    /* Tombol tetap dengan ukuran aslinya */
  }
}

@media screen and (max-width: 884px) {
  html {
    font-size: 65%;
  }

  /* ---- Category Section ----*/
  .category-title {
    left: 70%;
    font-size: 50px;
    font-weight: 700;
    -webkit-text-stroke: 3px var(--edition);
  }

  .image-container {
    left: 8%;
  }

  .category-image {
    width: 350px;
    bottom: 50%;
  }

  .category-slider-container {
    width: 50%;
    margin-left: 35%;
  }

  .category-slider {
    left: -1%;
    gap: 25px;
  }

  .category-card {
    width: 175px;
    height: 140px;
  }

  /* ------- Catergory End --------*/
  .promo-product-slider-container {
    width: calc(335px * 2 + 60px);
    /* Mengakomodasi gap 30px */
    left: 7%;
  }

  .promo-product-slider {
    position: relative;
    top: -15%;
    padding-left: 1%;
  }

  /* Product Card */
  .product-masterbox,
  .product-innerbox,
  .product-lebaran,
  .product-christmas,
  .product-imlek {
    width: 4rem;
    left: -25%;
    font-size: 25px;
  }

  .product-image img {
    left: 10%;
  }

  .product-image img.hover-image {
    left: 7%;
  }

  .ratings {
    left: 60%;
  }

  .product-title {
    font-size: 1.5rem;
    left: 9%;
  }

  .product-deskripsi {
    font-size: 2rem;
    left: -1%;
  }

  .product-card:hover .product-detail {
    transform: translate(9%, -25%);
  }

  /* ------- ------- ------- */

  /* ------ Product New Release Section ----- */
  /* ------ Header Section ----- */
  .header-new-release {
    height: 350px;
  }

  .content-header-new-release {
    max-width: 60%;
    left: 15%;
  }

  .header-new-release-subtitile {
    right: 48%;
    font-size: 1.6rem;
  }

  /* ---- Title Promo ---- */
  .promonewrelease-header {
    top: 35%;
    width: 300px;
    height: 250px;
    right: 5%;
  }

  .promonewrelease-header-title {
    top: 5%;
    font-size: 4.5rem;
  }

  .deskripsi-promonewrelease-header {
    bottom: 60%;
    font-size: 1.5rem;
  }

  .spesial-edition {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---- Title Promo Ends---- */
  /*Store Section*/
  .container {
    flex-direction: column;
    height: auto;
    width: 90vw;
    padding: 10px;
  }

  .map-dropdown-container {
    flex-direction: column;
    align-items: center;
  }

  .map-container {
    width: 80%;
    height: 350px;
  }

  .dropdown-store-info {
    width: 50%;
    margin-top: 20px;
  }

  .store-info {
    max-width: 90%;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 28px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
    left: 10%;
  }
}

@media screen and (max-width: 834px) {
  .image-container {
    left: 5%;
  }

  .category-image {
    width: 320px;
  }

  .category-slider-container {
    width: 54%;
  }

  /* ------- Catergory End --------*/
  .promo-product-slider-container {
    width: calc(335px * 2 + 60px);
    left: 4%;
  }

  .promo-product-slider {
    padding-left: 5%;
  }

  /* ------- ------- ------- */

}

@media screen and (max-width: 768px) {

  /* ---- Category Section ----*/
  .category-title {
    left: 75%;
    font-size: 50px;
    font-weight: 700;
    -webkit-text-stroke: 3px var(--edition);
  }

  .image-container {
    left: 2%;
  }

  .category-image {
    width: 350px;
  }

  .category-slider-container {
    width: 58%;
    margin-left: 45%;
  }

  .category-slider {
    left: -1%;
    gap: 25px;
  }

  .category-card {
    width: 175px;
    height: 140px;
  }

  /* ------- Catergory End --------*/
  .promo-product-slider-container {
    width: calc(335px * 2 + 60px);
    left: -0.5%;
    overflow: hidden;
    height: 70vh;
  }

  .promo-product-slider {
    padding-left: 15%;
    display: flex;
  }

  /* ------- ------- ------- */

  /* Store Section */
  .container {
    flex-direction: column;
    height: auto;
    width: 95vw;
    padding: 10px;
  }

  .map-dropdown-container {
    flex-direction: column;
    align-items: center;
  }

  .map-container {
    width: 80%;
    height: 350px;
  }

  .dropdown-store-info {
    width: 50%;
    margin-top: 15px;
  }

  .dropdown-btn {
    width: 40%;
    padding: 12px;
    font-size: 0.9rem;
  }

  .store-info {
    max-width: 100%;
    padding: 15px;
  }

  .whatsapp-float {
    width: 40px;
    height: 40px;
    font-size: 25px;
  }

  .whatsapp-float img {
    width: 25px;
    height: 25px;
  }

  .footer-container {
    text-align: center;
    /* Agar konten lebih sejajar untuk layar kecil */
  }

  .footer-links {
    flex-direction: column;
    /* Link ditumpuk ke bawah */
    gap: 2rem;
    text-align: left;
    /* Kembali ke rata kiri */
  }

  .footer-column ul {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    /* Copyright & Logo ditumpuk */
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-brand a {
    font-size: 4rem;
    /* Kurangi ukuran teks logo */
    gap: 5px;
  }

  .footer-brand img {
    width: 60px;
    /* Perkecil ukuran logo */
  }
}

@media screen and (max-width: 480px) {
  .promo-product-slider-container {
    width: calc(335px * 1 + 30px);
    overflow: hidden;
    height: 70vh;
  }

  .promo-product-slider {
    padding-left: 15%;
    display: flex;
  }

  /* Product Card */
  .product-masterbox {
    width: 4rem;
    left: -25%;
    font-size: 25px;
  }

  .product-innerbox {
    width: 4rem;
    left: -25%;
    font-size: 25px;
  }

  .product-image img {
    left: 10%;
  }

  .product-image img.hover-image {
    left: 7%;
  }

  .ratings {
    left: 60%;
  }

  .product-title {
    font-size: 1.5rem;
    left: 9%;
  }

  .product-deskripsi {
    font-size: 2rem;
    left: -1%;
  }

  .product-card:hover .product-detail {
    transform: translate(9%, -25%);
  }

  /* ------- ------- ------- */
  .spesial-edition {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 30px 10px;
    /* Kurangi padding agar tidak terlalu besar */
  }

  .footer-content p {
    font-size: 1.2rem;
    /* Perkecil ukuran teks */
  }

  .footer-content a {
    font-size: 2rem;
  }

  .footer-links {
    gap: 1rem;
    /* Kurangi jarak agar lebih rapi */
  }

  .footer-column h2 {
    font-size: 1.5rem;
    /* Sesuaikan heading */
  }

  .signup-form {
    flex-direction: column;
  }

  .signup-form input {
    font-size: 12px;
  }

  .signup-form button {
    font-size: 12px;
    padding: 8px 15px;
  }

  .footer-bottom {
    gap: 5px;
  }
}

/* ------ mobile Resolution ------ */
@media only screen and (max-width: 440px) and (orientation: portrait) {
  html {
    font-size: 55%;
  }

  #hamburger-menu {
    display: inline-block;
  }

  /* Offcanvas Menu (Hamburger) */
  .navbar .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--secondary);
    width: 20rem;
    height: 100vh;
    z-index: 99999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    transition: right 0.5s ease-in-out;
  }

  .navbar-nav.active {
    right: 0;
  }

  .navbar-nav .navbar-nav-menu {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    list-style: none;
    align-content: center;
    padding: 2rem;
  }

  .navbar .navbar-nav .navbar-nav-menu a {
    font-size: 1.3rem;
    color: var(--contrast);
    padding: 1rem 0;
    transition: color 0.3s ease;
  }

  .navbar .navbar-nav .navbar-nav-menu a:after {
    transform-origin: 0 0;
  }

  .navbar .navbar-nav .navbar-nav-menu a:hover::after {
    transform: scaleX(0.5);
  }

  /* ---- Category Section ----*/
  .category-title {
    left: 20%;
    font-size: 50px;
    font-weight: 700;
    -webkit-text-stroke: 3px var(--edition);
  }

  .image-container {
    position: relative;
    left: 0%;
  }

  .category-image {
    margin-left: 10%;
    width: 350px;
  }

  .category-slider-container {
    margin-top: -15%;
    width: 100%;
    margin-left: -3%;
  }

  .category-slider {
    left: -1%;
    gap: 30px;
  }

  .category-card {
    width: 170px;
    height: 140px;
  }

  /* ------- Catergory End --------*/
  /* ------- Coundown Section ----- */
  .countdown {
    width: 15rem;
    padding: 10px 10px;
    font-size: 13px;
    margin-top: 5%;
    right: 33.5%;
    gap: 1px;
  }

  .countdown .days,
  .countdown .time {
    font-size: 13px;
  }

  .countdown span:not(.days) {
    font-size: 13px;
  }

  .promo-product-slider-container {
    width: calc(335px * 1 + 30px);
    left: 5%;
  }

  .promo-product-slider {
    top: -7%;
  }

  /* Product Card */
  .product-masterbox,
  .product-innerbox,
  .product-lebaran,
  .product-christmas,
  .product-imlek {
    width: 4rem;
    left: -25%;
    font-size: 25px;
  }

  .product-image img {
    left: 10%;
  }

  .product-image img.hover-image {
    left: 7%;
  }

  .ratings {
    left: 60%;
  }

  .product-title {
    font-size: 1.5rem;
    left: 9%;
  }

  .product-deskripsi {
    font-size: 2rem;
    left: -1%;
  }

  .product-card:hover .product-detail {
    transform: translate(9%, -25%);
  }

  /* ------- ------- ------- */


  /* ------ Header Section ----- */
  .header-new-release {
    flex-wrap: wrap;
    justify-content: center;
    height: 300px;
  }

  .content-header-new-release {
    max-width: 100%;
    top: 10%;
    left: 25%;
  }

  .header-new-release-subtitile {
    white-space: nowrap;
    width: 100%;
    right: 53%;
  }

  /* ---- Title Promo ---- */
  .promonewrelease-header {
    top: 15%;
    width: 250px;
    height: 200px;
    left: 0%;
  }

  .promonewrelease-header-title {
    left: 10%;
    top: 10%;
  }

  .deskripsi-promonewrelease-header {
    left: 20%;
    bottom: 35%;
  }

  .pcta {
    left: 20%;
    top: -5%;
  }

  /* ---- Title Promo Ends---- */
  /* ---- Service Section ---- */
  .service-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mengatur menjadi 2 kolom */
    gap: 10px;
    /* Menambahkan jarak antar item */
    padding: 10px;
    /* Mengurangi padding untuk layar kecil */
  }

  .produsen,
  .stanby,
  .cs,
  .ongkir,
  .garansi,
  .return {
    max-width: 100%;
    margin: 10%;
    text-align: center;
  }

  .produsen img,
  .stanby img,
  .cs img,
  .ongkir img,
  .garansi img,
  .return img {
    width: 30%;
  }

  .produsen p,
  .stanby p,
  .cs p,
  .ongkir p,
  .garansi p,
  .return p {
    font-size: 12px;
  }

  /* Store Section */
  .container {
    flex-direction: column;
    height: auto;
    width: 95vw;
    padding: 10px;
  }

  .map-dropdown-container {
    flex-direction: column;
    align-items: center;
  }

  .map-container {
    width: 100%;
    height: 250px;
  }

  .dropdown-store-info {
    width: 70%;
    margin-top: 15px;
  }

  .dropdown-btn {
    width: 50%;
    padding: 12px;
    font-size: 0.9rem;
  }

  .store-info {
    max-width: 100%;
    padding: 15px;
  }

  .whatsapp-float {
    width: 40px;
    height: 40px;
    font-size: 25px;
  }

  .whatsapp-float img {
    width: 25px;
    height: 25px;
    left: 10%;
  }
}

@media only screen and (max-width: 414px) and (orientation: portrait) {
  html {
    font-size: 50%;
  }

  #hamburger-menu {
    display: inline-block;
  }

  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: var(--secondary);
    width: 20rem;
    height: 100vh;
    box-shadow: 0px 12px 10px;
    transition: 0.5s ease-in-out;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav .navbar-nav-menu {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-content: center;
    padding: 1rem 7%;
  }

  .navbar .navbar-nav .navbar-nav-menu a {
    font-size: 125%;
    margin-top: 20px;
  }

  .navbar .navbar-nav .navbar-nav-menu a:after {
    transform-origin: 0 0;
  }

  .navbar .navbar-nav .navbar-nav-menu a:hover::after {
    transform: scaleX(0.5);
  }

  /* ---- Category Section ----*/
  .category-image {
    margin-left: 10%;
    width: 350px;
  }

  .category-slider-container {
    margin-top: -15%;
    width: 110%;
    margin-left: 4%;
  }

  /* ------- Catergory End --------*/
  .promo-product-slider-container {
    width: calc(335px * 1 + 30px);
    left: 5%;
  }

  .promo-product-slider {
    width: 100%;
    max-width: 100%;
  }

  /* Product Card */
  .product-masterbox {
    width: 5rem;
    left: -25%;
    font-size: 25px;
  }

  .product-innerbox {
    width: 5rem;
    left: -25%;
    font-size: 25px;
  }

  /* ------- ------- ------- */
  /* ------ Header Section ----- */
  .promonewrelease-header {
    width: 230px;
    height: 180px;
  }

  .promonewrelease-header-title {
    display: flex;
    left: 10%;
    top: 10%;
    position: relative;
    font-size: 3rem;
    font-weight: 600;
    margin-top: 20px;
  }

  .deskripsi-promonewrelease-header {
    display: flex;
    position: relative;
    left: 12%;
    bottom: 35%;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 600;
  }

  /* ---- Title Promo Ends---- */
}

@media only screen and (max-width: 390px) and (orientation: portrait) {

  /* ---- Category Section ----*/
  .category-slider-container {
    margin-top: -15%;
    width: 63.5%;
    margin-left: -3.5%;
  }

  .category-slider {
    left: -1%;
    gap: 25px;
  }

  .category-card {
    width: 175px;
    height: 140px;
  }

  /* ------- Catergory End --------*/
  .promo-product-slider-container {
    width: calc(335px * 1 + 30px);
    left: 1%;
  }

  .promo-product-slider {
    width: 100%;
    max-width: 100%;
  }

  /* Product Card */
  .product-masterbox {
    width: 5.5rem;
    left: -25%;
    font-size: 25px;
  }

  .product-innerbox {
    width: 5.5rem;
    left: -25%;
    font-size: 25px;
  }

}

@media only screen and (max-width: 380px) and (orientation: portrait) {
  html {
    font-size: 45%;
  }

  /* ---- Category Section ----*/
  .category-title {
    left: 13.5%;
  }

  .category-image {
    margin-left: 10%;
    width: 300px;
  }

  .category-slider-container {
    margin-top: -15%;
    width: 68%;
    margin-left: 0%;
  }

  /* ------- Catergory End --------*/
  /* ------- Coundown Section ----- */
  .countdown {
    width: 20rem;
    font-size: 12px;
    right: 30%;
    gap: 1px;
  }

  .countdown .days,
  .countdown .time {
    font-size: 12px;
  }

  .countdown span:not(.days) {
    font-size: 12px;
  }

  .promo-product-slider-container {
    width: calc(335px * 1 + 30px);
    left: -1%;
  }

  .promo-product-slider {
    width: 100%;
    max-width: 100%;
  }

  /* Product Card */
  .product-masterbox {
    width: 6rem;
    left: -25%;
    font-size: 25px;
  }

  .product-innerbox {
    width: 6rem;
    left: -25%;
    font-size: 25px;
  }

  .product-image img {
    left: 10%;
  }

  .product-image img.hover-image {
    left: 7%;
  }

  .ratings {
    left: 60%;
  }

  .product-title {
    font-size: 2rem;
    left: 9%;
  }

  .product-deskripsi {
    font-size: 2.5rem;
    left: -1%;
  }

  /* ------- ------- ------- */
  .background-benner1-1 {
    right: 145%;
  }

  .background-benner1-2 {
    right: 60%;
  }

  .small-benner1:hover .background-benner1-1 {
    right: 150%;
  }

  .small-benner1:hover .background-benner1-2 {
    right: 55%;
  }

  .background-benner2-1 {
    right: 145%;
  }

  .background-benner2-2 {
    right: 60%;
  }

  .small-benner2:hover .background-benner2-1 {
    right: 150%;
  }

  .small-benner2:hover .background-benner2-2 {
    right: 55%;
  }
}

@media only screen and (max-width: 360px) and (orientation: portrait) {
  .promo-product-slider-container {
    height: 75vh;
    width: calc(300px * 1 + 30px);
    left: 2.5%;
  }

  .promo-product-slider {
    width: 100%;
    max-width: 100%;
  }

  /* Product Card */
  .product-card {
    width: 300px;
  }

  .product-masterbox {
    width: 6rem;
    left: -25%;
    font-size: 25px;
  }

  .product-innerbox {
    width: 6rem;
    left: -25%;
    font-size: 25px;
  }

  .product-image img {
    left: 10%;
  }

  .product-image img.hover-image {
    left: 7%;
  }

  .ratings {
    left: 60%;
  }

  .product-title {
    font-size: 2rem;
    left: 9%;
  }

  .product-deskripsi {
    font-size: 2.5rem;
    left: -1%;
  }

  /* ------- ------- ------- */
  .small-benner1 .small-image-1,
  .small-benner2 .small-image-2 {
    right: 75%;
  }

  .background-benner1-1 {
    right: 150%;
  }

  .background-benner1-2 {
    right: 65%;
  }

  .small-benner1:hover .background-benner1-1 {
    right: 155%;
  }

  .small-benner1:hover .background-benner1-2 {
    right: 60%;
  }

  .background-benner2-1 {
    right: 150%;
  }

  .background-benner2-2 {
    right: 65%;
  }

  .small-benner2:hover .background-benner2-1 {
    right: 155%;
  }

  .small-benner2:hover .background-benner2-2 {
    right: 60%;
  }

  /* ------ Header Section ----- */
  /* ---- Title Promo ---- */
  .promonewrelease-header {
    top: 20%;
    width: 200px;
    height: 130px;
  }

  .promonewrelease-header-title {
    left: 10%;
  }

  .deskripsi-promonewrelease-header {
    left: 12%;
    bottom: 45%;
  }

  .pcta {
    left: 20%;
    top: -10%;
    font-size: 12px;
  }

  /* ---- Title Promo Ends---- */
}

@media only screen and (max-width: 349px) and (orientation: portrait) {
  html {
    font-size: 40%;
  }

  /* ---- Category Section ----*/
  .category-title {
    left: 11.5%;
    font-size: 45px;
  }

  .category-image {
    margin-left: 10%;
    width: 250px;
  }

  .category-slider-container {
    margin-top: -15%;
    width: 79%;
    margin-left: 0%;
  }

  /* ------- Catergory End --------*/
  /* ------- Coundown Section ----- */
  .countdown {
    width: 20rem;
    font-size: 12px;
    right: 30%;
  }

  .countdown .days,
  .countdown .time {
    font-size: 12px;
  }

  .countdown span:not(.days) {
    font-size: 12px;
  }

  .promo-product-slider-container {
    height: 85vh;
    width: calc(306px * 1);
    left: 0.5%;
  }

  .promo-product-slider {
    width: 100%;
    max-width: 100%;
  }

  /* Product Card */
  .product-card {
    padding: 1rem;
    width: 275px;
    height: 275px;
  }

  .product-masterbox {
    width: 6rem;
    left: -25%;
    font-size: 25px;
  }

  .product-innerbox {
    width: 6rem;
    left: -25%;
    font-size: 25px;
  }

  .product-image img {
    left: 10%;
  }

  .product-image img.hover-image {
    left: 7%;
  }

  .ratings {
    left: 60%;
  }

  .product-title {
    font-size: 1.5rem;
    left: 9%;
  }

  .product-deskripsi {
    font-size: 2rem;
    left: -1%;
  }

  .product-card:hover .product-detail {
    transform: translate(9%, -25%);
  }

  /* ------- ------- ------- */
  .small-benner1,
  .small-benner2 {
    width: 450px;
    height: 150px;
  }

  .content-1,
  .content-2 {
    left: 40%;
  }

  .content-1 .sbennertitle,
  .content-2 .sbennertitle {
    width: 150px;
    font-size: 14px;
  }

  .content-1 .sbennersubtitle,
  .content-2 .sbennersubtitle {
    font-size: 10px;
    width: 160px;
    margin-top: 2px;
  }

  .small-benner1 .small-image-1,
  .small-benner2 .small-image-2 {
    right: 70%;
  }

  .scta-1,
  .scta-2 {
    width: 60%;
    font-size: 10px;
  }

  .background-benner1-1 {
    right: 145%;
  }

  .background-benner1-2 {
    right: 60%;
  }

  .small-benner1:hover .background-benner1-1 {
    right: 150%;
  }

  .small-benner1:hover .background-benner1-2 {
    right: 55%;
  }

  .background-benner2-1 {
    right: 145%;
  }

  .background-benner2-2 {
    right: 60%;
  }

  .small-benner2:hover .background-benner2-1 {
    right: 150%;
  }

  .small-benner2:hover .background-benner2-2 {
    right: 55%;
  }

  /* ------ Header Section ----- */
  /* ---- Title Promo ---- */
  .promonewrelease-header-title {
    left: 13%;
  }

  .deskripsi-promonewrelease-header {
    left: 15%;
    bottom: 45%;
  }

  /* ---- Title Promo Ends---- */
}

@media only screen and (max-width: 318px) and (orientation: portrait) {
  html {
    font-size: 40%;
  }

  .labels {
    gap: 5px;
  }

  .label::after {
    margin-left: 2px;
  }
}

/* ------ Media Queries End ------ */

.maintain-container {
  height: 100vh;
  padding: 20px;
  text-align: center;
  align-content: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
}