/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}

/* Base Element Resets */
html {
  scroll-behavior: smooth;
  scroll-padding: 3.8rem;
}
@media (min-width: 1024px) {
  html {
    scroll-padding: 7.2rem;
  }
}

* {
  font-family: "Inter", sans-serif;
}

/* Apply Reset to Standard Elements */
/* HTML5 Display Role Reset */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Base Styles */
body {
  line-height: 1;
  font-family: "Inter", sans-serif;
  background-color: #f5f6fc;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Mixins */
/* Header Styles */
header {
  background-color: #20528d;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1472px;
  margin: 0 auto;
  color: #ffffff;
}
header .header-container.detail {
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}
header .hm-logo {
  width: 150px;
  margin-top: -10px;
}
@media (min-width: 1024px) {
  header .hm-logo {
    width: 200px;
  }
}
header i {
  margin-top: 6px;
}

/* Main Content Styles */
main {
  /* Hero Section */
  /* eSIM List Section */
}
main .hero {
  background-color: #20528d;
  padding: 2rem 1rem;
}
main .hero .hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main .hero .hero-container .hero-title {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  text-align: center;
  align-items: center;
  width: 100%;
}
main .hero .hero-container h1 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
}
@media (max-width: 392px) {
  main .hero .hero-container h1 {
    font-size: 1rem;
  }
}
main .hero .hero-container .hero-banner-desktop {
  display: none;
}
main .hero .hero-container .swiper.swiper-banner {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px 0;
}
main .hero .hero-container .swiper.swiper-banner .swiper-wrapper.one-slide .swiper-slide {
  width: 100%;
}
main .hero .hero-container .swiper.swiper-banner .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  border-radius: 10px;
}
main .hero .hero-container .swiper.swiper-banner .swiper-slide.active {
  width: 100%;
}
main .hero .hero-container .swiper.swiper-banner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 10px;
}
@media (min-width: 1280px) and (max-width: 1400px) {
  main .hero .hero-container .swiper.swiper-banner .swiper-slide img {
    height: 80%;
  }
}
main .hero .hero-container .swiper.swiper-banner .swiper-button-prev::after {
  font-size: 1.4rem;
}
main .hero .hero-container .swiper.swiper-banner .swiper-button-next::after {
  font-size: 1.4rem;
}
main .hero .hero-container .swiper.swiper-banner .swiper-pagination {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: -10px;
}
main .hero .hero-container .search-traveler {
  height: 40px;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 1rem;
}
main .hero .hero-container .search-traveler:focus {
  outline: none;
  border: 1px solid #4c84c4;
}
main .hero .hero-container .search-traveler::-moz-placeholder {
  color: #aaa;
}
main .hero .hero-container .search-traveler::placeholder {
  color: #aaa;
}
main .hero .hero-container .hero-img {
  display: none;
}
main .hero .hero-container .search-container {
  position: relative;
  width: 100%;
  display: grid;
}
main .hero .hero-container .search-result {
  background-color: #ffffff;
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 90%;
  border-radius: 6px;
  box-sizing: border-box;
  padding: 0.8rem;
  border: 1px solid #ddd;
  gap: 1.2rem;
  opacity: 0;
  transition-property: display, opacity;
  transition-duration: 0.2s;
  transition-behavior: allow-discrete;
  transition-timing-function: ease-in-out;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}
main .hero .hero-container .search-result.show {
  display: grid;
  opacity: 1;
}
@starting-style {
  main .hero .hero-container .search-result.show {
    opacity: 0;
  }
}
main .hero .hero-container .search-result-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main .hero .hero-container .search-result-card {
  padding: 1rem;
  border-radius: 8px;
  background-color: #f5f6fc;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
main .hero .hero-container .search-result-card img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
main .hero .hero-container .search-result-loc {
  font-size: 0.8rem;
  color: #32363e;
  font-weight: 600;
  text-align: left;
}
@media (min-width: 768px) {
  main .hero .hero-container {
    max-width: 1024px;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
  }
  main .hero .hero-container div {
    text-align: left;
    row-gap: 2rem;
  }
  main .hero .hero-container h1 {
    font-size: 3rem;
    letter-spacing: 3px;
  }
}
@media (min-width: 1024px) {
  main .hero .hero-container {
    justify-content: space-between;
    max-width: 1472px;
    padding: 0 2rem;
    gap: 4rem;
    margin: 0 auto;
  }
  main .hero .hero-container h1 {
    font-size: 4rem;
    letter-spacing: 5px;
  }
  main .hero .hero-container .hero-banner-mobile {
    display: none;
  }
  main .hero .hero-container .swiper.swiper-banner {
    padding: 1.4rem;
  }
  main .hero .hero-container .hero-img {
    display: block;
    width: 190px;
    aspect-ratio: 1;
    border-radius: 50% 50% 20% 20%;
  }
  main .hero .hero-container .hero-title {
    max-width: 500px;
    text-align: left;
    align-items: start;
  }
  main .hero .hero-container .hero-title h1 {
    width: 100%;
    min-height: 48px; /* Set approximate height */
    content-visibility: auto;
    contain-intrinsic-size: auto 48px;
  }
  main .hero .hero-container .hero-banner-desktop {
    display: block;
    position: relative;
    height: 340px;
    max-width: 100%;
  }
  main .hero .hero-container .hero-banner-desktop .swiper-wrapper.one-slide {
    display: flex;
    justify-content: center;
  }
  main .hero .hero-container .hero-banner-desktop .swiper-wrapper.one-slide .swiper-slide {
    width: 100%;
  }
}
main .esim-list .choose-region {
  display: flex;
  justify-content: space-around;
  height: 40px;
  background-color: #ffffff;
}
main .esim-list .choose-region button {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  background-color: #ffffff;
  border: none;
  transition: all 0.2s ease-in-out;
  color: #32363e;
}
main .esim-list .choose-region button:hover {
  background-color: #f2f2f2;
  font-weight: 600;
}
main .esim-list .choose-region button.active {
  background-color: #eeebeb;
  font-weight: 600;
}
main .esim-list .esim-list-container {
  padding: 1rem;
  display: block;
  /* Skeleton Loading for Price Title */
}
main .esim-list .esim-list-container .esim-list-lokal {
  display: none;
}
main .esim-list .esim-list-container .esim-list-lokal.active {
  display: block;
}
main .esim-list .esim-list-container .esim-list-lokal .esim-popular {
  margin-bottom: 1.2rem;
}
main .esim-list .esim-list-container .esim-list-lokal .esim-popular .esim-popular-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #32363e;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container .esim-list-lokal .esim-popular .esim-popular-title {
    font-weight: 600;
    font-size: 1.4rem;
    color: #32363e;
  }
}
main .esim-list .esim-list-container .esim-list-lokal .esim-popular .esim-popular-cards {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container .esim-list-lokal .esim-popular .esim-popular-cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container .esim-list-lokal .esim-popular {
    margin-bottom: 3rem;
  }
}
main .esim-list .esim-list-container .esim-list-lokal .esim-more .esim-more-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #32363e;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container .esim-list-lokal .esim-more .esim-more-title {
    font-weight: 600;
    font-size: 1.4rem;
    color: #32363e;
  }
}
main .esim-list .esim-list-container .esim-list-lokal .esim-more .esim-more-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
main .esim-list .esim-list-container .esim-list-lokal .esim-more .esim-more-cards i {
  display: none;
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container .esim-list-lokal .esim-more .esim-more-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
main .esim-list .esim-list-container .esim-list-regional {
  display: none;
}
main .esim-list .esim-list-container .esim-list-regional.active {
  display: block;
}
main .esim-list .esim-list-container .esim-list-regional .esim-regional-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #32363e;
  margin-bottom: 16px;
}
main .esim-list .esim-list-container .esim-list-regional .esim-regional-cards {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
main .esim-list .esim-list-container .esim-list-price {
  display: none;
}
main .esim-list .esim-list-container .esim-list-price.active {
  display: block;
}
main .esim-list .esim-list-container .esim-price-title {
  display: none;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
  margin-left: 1rem;
}
main .esim-list .esim-list-container .esim-price-title img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 25px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  -o-object-fit: cover;
     object-fit: cover;
}
main .esim-list .esim-list-container .esim-price-title div {
  font-weight: 600;
  font-size: 1.4rem;
  color: #32363e;
}
main .esim-list .esim-list-container .esim-price-title.show {
  display: flex;
}
main .esim-list .esim-list-container .esim-price-title-skeleton {
  display: none;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
  margin-left: 1rem;
}
main .esim-list .esim-list-container .esim-price-title-skeleton-flag {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 25px;
  background-color: #e8e8e8;
  animation: pulse 1.5s infinite ease-in-out;
}
main .esim-list .esim-list-container .esim-price-title-skeleton-name {
  width: 150px;
  height: 1.4rem;
  background-color: #e8e8e8;
  border-radius: 4px;
  animation: pulse 1.5s infinite ease-in-out;
}
main .esim-list .esim-list-container .esim-price-title-skeleton.show {
  display: flex;
}
main .esim-list .esim-list-container .esim-price-cards {
  display: none;
  grid-auto-flow: row;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 2rem;
  padding: 0.5rem;
}
main .esim-list .esim-list-container .esim-price-cards .esim-not-available {
  text-align: center;
  font-size: 1.2rem;
  border: 1px solid grey;
  border-radius: 8px;
  padding: 1rem;
  background-color: #eeebeb;
  line-height: 1.4rem;
  margin: 1rem 0;
}
main .esim-list .esim-list-container .esim-price-cards.show {
  display: grid;
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container .esim-price-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
main .esim-list .esim-list-container .esim-list-global {
  display: none;
}
main .esim-list .esim-list-container .esim-list-global.active {
  display: block;
}
main .esim-list .esim-list-container .esim-list-global .esim-global-cards {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container .esim-list-global .esim-global-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
main .esim-list .esim-list-container .esim-card {
  padding: 0.8rem 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  color: #32363e;
  min-height: 34px;
}
main .esim-list .esim-list-container .esim-card:hover {
  background-color: #f9f9f9;
}
main .esim-list .esim-list-container .esim-card.rounded-sm {
  border-radius: 6px;
}
main .esim-list .esim-list-container .esim-card.rounded {
  border-radius: 25px;
}
main .esim-list .esim-list-container .esim-card .esim-card-content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 500;
}
main .esim-list .esim-list-container .esim-card .esim-card-content .esim-card-flag {
  min-width: 1.5rem;
  min-height: 1.5rem;
}
main .esim-list .esim-list-container .esim-card .esim-card-content .esim-card-flag img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container .esim-card .esim-card-content .esim-card-flag img {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container .esim-card .esim-card-content {
    gap: 1rem;
    font-size: 1.2rem;
  }
}
main .esim-list .esim-list-container .esim-card .esim-card-arrow {
  background-color: #f2f2f2;
  padding: 1rem;
  border-radius: 6px;
  max-height: 2px;
  max-width: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container .esim-card {
    padding: 0.8rem 1.2rem;
  }
}
@media (min-width: 768px) {
  main .esim-list .esim-list-container .esim-popular-cards,
  main .esim-list .esim-list-container .esim-regional-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  main .esim-list .esim-list-container {
    margin: 0 auto;
    max-width: 1472px;
    padding: 1.5rem 2rem;
  }
  main .esim-list .esim-list-container .esim-popular-cards,
  main .esim-list .esim-list-container .esim-regional-cards {
    display: grid;
    grid-template-columns: 1fr 1;
  }
}
main .esim-detail-container {
  padding: 1.6rem 1rem 1rem 1rem;
}
main .esim-price-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: flex;
  flex-direction: column;
}
main .esim-price-detail {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid lightgrey;
  color: #32363e;
}
main .esim-price-detail-container {
  flex-grow: 1;
}
main .esim-price-label {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
main .esim-fa-icon {
  min-width: 16px;
}
main .esim-price-value {
  font-weight: 600;
  width: 50%;
  text-align: right;
}
main .esim-price-value-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  gap: 0.6rem;
}
main .esim-price-value-group .esim-price-value {
  display: flex;
  align-items: center;
  min-width: 60%;
  justify-content: end;
}
main .esim-price-value-group .esim-price-value .esim-price-value-old {
  position: relative;
  color: grey;
  font-weight: 400;
  font-size: 0.85rem;
  background: none;
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  text-align: right;
  margin-right: 0.2rem;
}
main .esim-price-value-group .esim-price-value .esim-price-value-old::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e53935;
  transform: rotate(-8deg);
  transform-origin: center;
  z-index: 2;
}
main .esim-price-value-group .esim-price-value .discount-tag {
  font-size: 0.6rem;
  color: white;
  background-color: #e53935;
  padding: 0.4rem;
  margin-left: 0.3rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
main .esim-price-value-group .esim-price-value + .esim-price-value {
  font-weight: 700;
  font-size: 1.2rem;
  color: red;
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
}
main .esim-price-btn {
  display: grid;
}
main .esim-price-btn .esim-price-buy {
  font-weight: 600;
  font-size: 0.8rem;
  padding: 1rem;
  border-radius: 8px;
  background-color: #20548b;
  color: white;
  margin: 1rem 1.5rem;
  cursor: pointer;
  display: grid;
  gap: 0.2rem;
  text-align: center;
}
main .esim-payment-method {
  margin: 1.6rem 0 0 0;
}
main .esim-payment-method-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #32363e;
  margin-bottom: 0.4rem;
}
main .esim-payment-method p {
  font-size: 0.9rem;
  color: #6d737d;
  font-weight: 400;
  line-height: 1.5;
}
main .esim-payment-method button {
  cursor: pointer;
  margin-top: 0.8rem;
  border: none;
  background-color: #ffffff;
  padding: 0.8rem 1rem;
  display: flex;
  color: #32363e;
  font-size: 1rem;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 6px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
main .esim-promo-code {
  margin: 1.6rem 0 0 0;
  margin-bottom: 1rem;
}
main .esim-promo-code-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #32363e;
  margin-bottom: 0.4rem;
}
main .esim-promo-code p {
  font-size: 0.9rem;
  color: #6d737d;
  font-weight: 400;
  line-height: 1.5;
}
main .esim-promo-code button {
  cursor: pointer;
  margin-top: 0.8rem;
  border: none;
  background-color: #ffffff;
  padding: 0.8rem 1rem;
  display: flex;
  color: #32363e;
  font-size: 1rem;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 6px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
main .esim-agree {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
main .esim-agree label {
  font-size: 0.9rem;
  color: #6d737d;
  font-weight: 400;
  line-height: 1.2;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 1000;
}
footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1472px;
  margin: 0 auto;
}
footer .footer-price {
  line-height: 1.4;
}
footer .footer-price .footer-price-title {
  color: #6d737d;
  font-weight: 400;
  font-size: 0.8rem;
}
footer .footer-price .footer-total-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #32363e;
}
footer .footer-button {
  background-color: #20548b;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
footer .footer-button:hover {
  background-color: #1a4572;
}

.payment-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1100;
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition-property: display, opacity, transform;
  transition-duration: 0.5s;
  transition-behavior: allow-discrete;
  transition-timing-function: ease-in-out;
}
.payment-drawer.show {
  display: block;
  transform: translateX(0);
  opacity: 1;
}
@starting-style {
  .payment-drawer.show {
    transform: translateX(100%);
    opacity: 0;
  }
}
.payment-drawer-content {
  padding: 1rem;
}
.payment-drawer-content-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #32363e;
}
.payment-drawer-nav {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  background-color: #1a4572;
}
.payment-drawer-nav i {
  color: #ffffff;
}
.payment-drawer-header {
  line-height: 1.5;
  padding-bottom: 1rem;
}
.payment-drawer-header div {
  font-weight: 600;
  font-size: 1.2rem;
  color: #32363e;
}
.payment-drawer-header p {
  font-weight: 400;
  font-size: 1rem;
  color: #6d737d;
}
.payment-drawer .payment-cards {
  display: grid;
  gap: 1rem;
}
.payment-drawer .payment-card {
  padding: 1rem;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #32363e;
  line-height: 1.3;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.payment-drawer .payment-card.active {
  border: 1px solid #1a4572;
  scale: 1.02;
}
.payment-drawer .payment-card .payment-name {
  font-weight: 500;
}
.payment-drawer .payment-card .payment-name p {
  font-weight: 400;
  font-size: 0.8rem;
  color: #6d737d;
}
.payment-drawer .payment-card .payment-icon {
  height: 30px;
  margin: 0 2px;
}

.promo-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1100;
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition-property: display, opacity, transform;
  transition-duration: 0.5s;
  transition-behavior: allow-discrete;
  transition-timing-function: ease-in-out;
}
.promo-drawer.show {
  display: block;
  transform: translateX(0);
  opacity: 1;
}
@starting-style {
  .promo-drawer.show {
    transform: translateX(100%);
    opacity: 0;
  }
}
.promo-drawer-content {
  padding: 1rem;
}
.promo-drawer-content-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #32363e;
}
.promo-drawer-nav {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  background-color: #1a4572;
}
.promo-drawer-nav i {
  color: #ffffff;
}
.promo-drawer-header {
  line-height: 1.5;
  padding-bottom: 1rem;
}
.promo-drawer-header div {
  font-weight: 600;
  font-size: 1.2rem;
  color: #32363e;
}
.promo-drawer-header p {
  font-weight: 400;
  font-size: 1rem;
  color: #6d737d;
}
.promo-drawer .promo-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}
.promo-drawer .promo-list {
  padding: 1rem 0;
}
.promo-drawer .promo-list .promo-list-title {
  font-weight: 600;
}
.promo-drawer .promo-list .promo-list-content {
  padding: 1rem 0;
}

.input {
  background-color: #eee;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  outline: none;
  font-size: 1rem;
}

.button {
  background-color: #20548b;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.menu-title {
  color: white;
  background-color: #20548b;
}

.mobile-nav-back {
  display: flex;
  padding: 1rem;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mobile-nav-btn {
    display: none;
  }
}
.mobile-nav {
  position: fixed;
  height: 100vh;
  background-color: #ecebed;
  top: 0;
  right: 0;
  z-index: 201;
  color: black;
  width: 100vw;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow: auto;
}
.mobile-nav.show {
  display: block;
  transform: translateX(0);
}
.mobile-nav .menu-list {
  display: flex;
  flex-direction: column;
  /* Mobile Dropdown Styles */
}
.mobile-nav .menu-list .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
  border-bottom: 1px solid #ecebed;
}
.mobile-nav .menu-list .menu-item i {
  color: #fe7f22;
}
.mobile-nav .menu-list .mobile-dropdown-toggle {
  cursor: pointer;
}
.mobile-nav .menu-list .mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
}
.mobile-nav .menu-list .mobile-dropdown-toggle.active {
  background-color: #f5f6fc;
}
.mobile-nav .menu-list .mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
}
.mobile-nav .menu-list .mobile-dropdown-menu {
  display: none;
  background-color: #f8f9fa;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}
.mobile-nav .menu-list .mobile-dropdown-menu.show {
  display: block;
  max-height: 1000px; /* Large enough to accommodate all items */
}
.mobile-nav .menu-list .mobile-dropdown-menu .submenu-item {
  padding-left: 2rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #ecebed;
}
.mobile-nav .menu-list .mobile-dropdown-menu .submenu-item:hover {
  background-color: #f0f0f0;
}

.desktop-nav {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
  }
  .desktop-nav a {
    text-decoration: none;
    color: white;
    transition: all 0.2s ease-in-out;
    position: relative;
  }
  .desktop-nav a:hover {
    opacity: 0.8;
  }
  .desktop-nav .dropdown {
    position: relative;
  }
  .desktop-nav .dropdown .dropdown-toggle {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .desktop-nav .dropdown .dropdown-menu {
    position: absolute;
    top: 80%;
    left: 0;
    right: 80%;
    background-color: white;
    width: -moz-max-content;
    width: max-content;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 8px;
  }
  .desktop-nav .dropdown .dropdown-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    color: #32363e;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .desktop-nav .dropdown .dropdown-menu a:after {
    display: none;
  }
  .desktop-nav .dropdown .dropdown-menu a:hover {
    background-color: #f5f6fc;
    opacity: 1;
  }
  .desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .desktop-nav .dropdown:hover .dropdown-toggle {
    opacity: 0.8;
  }
}

.btn {
  border-radius: 4px;
  box-shadow: 0 1px 4px 0 rgba(58, 69, 95, 0.2);
  padding: 8px 12px !important;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px 0 rgba(58, 69, 95, 0.3);
}
.btn-white {
  color: #35508d;
  background: #fff;
}
.btn-white:hover {
  background: #f8f9fa;
}
.btn-hm {
  color: #fff;
  background: #4a73cf;
}
.btn-hm:hover {
  background: #3d63be;
}

.logo-and-nav {
  display: grid;
  gap: 1rem;
}

.pulse-loading {
  width: 100px;
  height: 30px;
  background-color: #e8e8e8;
  border-radius: 8px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}
.auth-menu {
  display: none;
}
@media (min-width: 1024px) {
  .auth-menu {
    display: block;
  }
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  display: block;
  margin: 20px auto;
  position: relative;
  background: currentColor;
  color: #20528d;
  box-sizing: border-box;
}
.loader::after, .loader::before {
  content: "";
  width: 8px;
  height: 40px;
  border-radius: 4px;
  background: currentColor;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  box-sizing: border-box;
  animation: animloader 0.3s 0.45s linear infinite alternate;
}
.loader::before {
  left: -20px;
  animation-delay: 0s;
}

@keyframes animloader {
  0% {
    height: 48px;
  }
  100% {
    height: 4px;
  }
}
/* Skeleton Loading Styles */
.search-result-skeleton {
  width: 100%;
}

.search-result-group.skeleton {
  margin-bottom: 1rem;
}

.search-result-loc-skeleton {
  height: 16px;
  width: 60px;
  background-color: #e8e8e8;
  border-radius: 4px;
  margin-bottom: 8px;
  animation: pulse 1.5s infinite ease-in-out;
}

.search-result-card-skeleton {
  padding: 1.4rem;
  border-radius: 8px;
  background-color: #f5f6fc;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 8px;
}

.search-result-img-skeleton {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e8e8e8;
  animation: pulse 1.5s infinite ease-in-out;
}

.search-result-text-skeleton {
  height: 16px;
  width: 100px;
  background-color: #e8e8e8;
  border-radius: 4px;
  animation: pulse 1.5s infinite ease-in-out;
}

/* Search Result Error Message */
.search-result-error {
  padding: 1rem;
  text-align: center;
  color: #6d737d;
  font-size: 0.9rem;
}

dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  background-color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 1000;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  outline: none;
  margin: 0;
  line-height: 1.5;
  overflow: hidden;
  /* Firefox doesn't support ::backdrop by default, so we need to ensure it's visible */
  /* Firefox specific styles */
}
dialog:not([open]) {
  display: none;
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
dialog[open] {
  animation: dialog-show 0.2s ease-out forwards;
}
dialog[open]::backdrop {
  animation: backdrop-show 0.2s ease-out forwards;
}
dialog.closing {
  animation: dialog-hide 0.2s ease-in forwards;
}
dialog.closing::backdrop {
  animation: backdrop-hide 0.2s ease-in forwards;
}
dialog .dialog-content .dialog-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #32363e;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
dialog .dialog-content .dialog-body {
  line-height: 1.5;
  font-size: 0.9rem;
}
dialog .dialog-content button {
  background-color: #20528d;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  outline: none;
}
dialog .dialog-content .dialog-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
@-moz-document url-prefix() {
  dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
  }
  dialog[open]::backdrop {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  dialog {
    max-width: 500px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  dialog .dialog-content .dialog-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  dialog .dialog-content button {
    padding: 0.9rem 1.8rem;
    transition: background-color 0.2s ease;
  }
  dialog .dialog-content button:hover {
    background-color: #1a4575;
  }
}
@media (min-width: 1024px) {
  dialog {
    max-width: 600px;
    padding: 2rem;
  }
}

@keyframes dialog-show {
  from {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes dialog-hide {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.95);
  }
}
@keyframes backdrop-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backdrop-hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.warning-dialog-modal .warning-dialog-icon {
  width: 70px;
  height: 70px;
  background-color: #fff3f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}
@media (max-width: 480px) {
  .warning-dialog-modal .warning-dialog-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.8rem;
  }
}
.warning-dialog-modal .warning-dialog-icon i {
  color: #ff5252;
  font-size: 2rem;
}
@media (max-width: 480px) {
  .warning-dialog-modal .warning-dialog-icon i {
    font-size: 1.7rem;
  }
}
.warning-dialog-modal .dialog-body {
  text-align: center;
}
.warning-dialog-modal .dialog-body p {
  color: #6d737d;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .warning-dialog-modal .dialog-body p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }
}
.warning-dialog-modal .dialog-footer {
  display: flex;
  justify-content: center;
}
.warning-dialog-modal .dialog-footer button {
  width: 100%;
  max-width: 200px;
}
@media (max-width: 480px) {
  .warning-dialog-modal .dialog-footer button {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
  }
}
.warning-dialog-modal .dialog-footer button:active {
  background-color: #1a4572;
  transform: scale(0.98);
}

/* eSIM Price Card Skeleton Loading */
.esim-price-card-skeleton {
  background-color: white;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  animation: pulse 1.5s infinite ease-in-out;
}
.esim-price-card-skeleton .esim-price-detail-skeleton {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid lightgrey;
}
.esim-price-card-skeleton .esim-price-detail-skeleton .esim-price-label-skeleton {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.esim-price-card-skeleton .esim-price-detail-skeleton .esim-price-label-skeleton .icon-skeleton {
  width: 20px;
  height: 20px;
  background-color: #e8e8e8;
  border-radius: 4px;
}
.esim-price-card-skeleton .esim-price-detail-skeleton .esim-price-label-skeleton .label-text-skeleton {
  width: 80px;
  height: 16px;
  background-color: #e8e8e8;
  border-radius: 4px;
}
.esim-price-card-skeleton .esim-price-detail-skeleton .esim-price-value-skeleton {
  width: 100px;
  height: 16px;
  background-color: #e8e8e8;
  border-radius: 4px;
}
.esim-price-card-skeleton .esim-price-btn-skeleton {
  padding: 1rem 1.5rem;
}
.esim-price-card-skeleton .esim-price-btn-skeleton .button-skeleton {
  width: 100%;
  height: 40px;
  background-color: #e8e8e8;
  border-radius: 8px;
}

.esim-price-cards #esim-price-cards-skeleton {
  display: none;
}
.esim-price-cards #esim-price-cards-skeleton.show {
  display: block;
}

/* Loading Dialog Styles */
.loading-dialog {
  width: 100px;
}
.loading-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.load-more-container {
  display: flex;
  justify-content: center;
}
.load-more-container button {
  font-weight: 600;
  font-size: 0.8rem;
  padding: 1rem;
  border-radius: 8px;
  background-color: #20548b;
  color: white;
  margin: 1rem 1.5rem;
  cursor: pointer;
  display: grid;
  gap: 0.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 60%;
  font-size: 0.9rem;
  text-align: center;
  justify-content: center;
  font-weight: 400;
  border: none;
}
.load-more-container button:hover {
  background-color: #1a4572;
}
.load-more-container button.active {
  animation: pulse 1.5s infinite ease-in-out;
}

.device-support {
  display: flex;
}

.esim-cakupan-btn {
  background-color: #f0f0f0;
  color: #555;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: all 0.2s ease-in-out;
}
.esim-cakupan-btn:hover {
  background-color: #e0e0e0;
  color: #333;
}

.esim-list-header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}
.esim-list-header .btn-info {
  background-color: white;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  color: #32363e;
}
.esim-list-header .btn-info:hover {
  background-color: #f0f0f0;
  color: #333;
  border-color: #ccc;
}
@media (min-width: 764px) {
  .esim-list-header {
    margin-bottom: 1.5rem;
  }
  .esim-list-header .btn-info {
    font-size: 0.85rem;
    padding: 0.6rem;
    justify-content: flex-start;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .esim-list-header {
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .esim-list-header .btn-info {
    font-size: 1rem;
    padding: 0.7rem;
  }
}

.device-support-modal .device-search {
  margin-bottom: 1.5rem;
}
.device-support-modal .device-search .search-input {
  position: relative;
  display: flex;
  align-items: center;
}
.device-support-modal .device-search .search-input i {
  position: absolute;
  left: 1rem;
  color: #6d737d;
}
.device-support-modal .device-search .search-input .device-search-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: #f8f9fa;
  transition: all 0.2s ease;
}
.device-support-modal .device-search .search-input .device-search-input:focus {
  outline: none;
  border-color: #20528d;
  background-color: white;
}
.device-support-modal .device-search .search-input .device-search-input::-moz-placeholder {
  color: #6d737d;
}
.device-support-modal .device-search .search-input .device-search-input::placeholder {
  color: #6d737d;
}
.device-support-modal .device-categories {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-right: 0.5rem;
  max-height: 400px;
}
.device-support-modal .device-category {
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.device-support-modal .device-category .category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.device-support-modal .device-category .category-header h3 {
  color: #32363e;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.device-support-modal .device-category .category-header i {
  color: #6d737d;
  transition: transform 0.3s ease;
}
.device-support-modal .device-category .category-content {
  height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.device-support-modal .device-category .category-content.show {
  height: auto;
}
.device-support-modal .device-category .device-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.device-support-modal .device-category .device-item:hover {
  background-color: #f8f9fa;
}
.device-support-modal .device-category .device-item i {
  color: #20528d;
  font-size: 1.1rem;
}
.device-support-modal .device-category .device-item span {
  font-size: 0.9rem;
  color: #32363e;
}
@media (max-width: 480px) {
  .device-support-modal .device-category .category-header {
    padding: 0.8rem;
  }
  .device-support-modal .device-category .device-item {
    padding: 0.6rem;
  }
}

.cakupan-height {
  max-height: 400px;
  overflow-y: auto;
}

.cakupan-item {
  padding: 0.8rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cakupan-modal .cakupan-search {
  margin-bottom: 1.5rem;
}
.cakupan-modal .cakupan-search .search-input {
  position: relative;
  display: flex;
  align-items: center;
}
.cakupan-modal .cakupan-search .search-input i {
  position: absolute;
  left: 1rem;
  color: #6d737d;
}
.cakupan-modal .cakupan-search .search-input .cakupan-search-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: #f8f9fa;
  transition: all 0.2s ease;
}
.cakupan-modal .cakupan-search .search-input .cakupan-search-input:focus {
  outline: none;
  border-color: #20528d;
  background-color: white;
}
.cakupan-modal .cakupan-search .search-input .cakupan-search-input::-moz-placeholder {
  color: #6d737d;
}
.cakupan-modal .cakupan-search .search-input .cakupan-search-input::placeholder {
  color: #6d737d;
}
.cakupan-modal .cakupan-list {
  overflow-y: auto;
  max-height: 400px;
  padding-right: 0.5rem;
}
.cakupan-modal .cakupan-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: background-color 0.2s ease;
}
.cakupan-modal .cakupan-item:hover {
  background-color: #f0f0f0;
}
.cakupan-modal .cakupan-item span {
  font-size: 0.9rem;
  color: #32363e;
}

.user-guide-container {
  max-width: 1472px;
  margin: 0 auto;
  padding: 2rem;
  color: #32363e;
}
.user-guide-container .section-title {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .user-guide-container .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.user-guide-container .guide-content-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .user-guide-container .guide-content-wrapper {
    gap: 4rem;
  }
}
.user-guide-container .swiper.user-guide {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 1rem;
}
.user-guide-container .swiper.user-guide .swiper-slide.user-guide-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-guide-container .swiper.user-guide .swiper-slide.user-guide-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.user-guide-container .swiper.user-guide .swiper-button-next.user-guide-prev,
.user-guide-container .swiper.user-guide .swiper-button-prev.user-guide-next {
  color: white;
  background: rgba(0, 0, 0, 0.3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.user-guide-container .swiper.user-guide .swiper-button-next.user-guide-prev:after,
.user-guide-container .swiper.user-guide .swiper-button-prev.user-guide-next:after {
  font-size: 1rem;
}
.user-guide-container .swiper.user-guide .swiper-pagination.user-guide-pagination {
  position: relative;
  margin-top: 1rem;
}
.user-guide-container .swiper.user-guide .swiper-pagination.user-guide-pagination .swiper-pagination-bullet {
  background: black;
  opacity: 0.6;
}
.user-guide-container .swiper.user-guide .swiper-pagination.user-guide-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.user-guide-container .user-guide-content {
  text-align: left;
  flex: 1;
}
.user-guide-container .user-guide-content span {
  display: none;
  font-size: 1.1rem;
  padding: 0.75rem;
  margin: 0.5rem auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 1024px) {
  .user-guide-container .user-guide-content span {
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 1rem;
    margin: 1rem auto;
  }
}

@media (max-width: 768px) {
  .user-guide-container {
    padding: 1rem;
  }
  .user-guide-container .section-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .user-guide-container .guide-content-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .user-guide-container .swiper {
    max-width: 280px;
  }
  .user-guide-container .user-guide-content {
    text-align: center;
  }
  .user-guide-container .user-guide-content span {
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 0.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .user-guide-container {
    padding: 1.5rem;
    max-width: 1472px;
  }
  .user-guide-container .section-title {
    font-size: 1.35rem;
    margin-bottom: 2rem;
  }
  .user-guide-container .guide-content-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  .user-guide-container .swiper {
    max-width: 300px;
  }
  .user-guide-container .user-guide-content {
    text-align: center;
  }
  .user-guide-container .user-guide-content span {
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 0.75rem;
  }
}
.faq-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
}
.faq-container .faq-title {
  text-align: left;
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.dropdown-container {
  max-width: 800px;
  margin: 0 auto;
}

.dropdown-section {
  border: 1px solid #e0e0e0;
  margin-bottom: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.dropdown-section:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.dropdown-section.active .dropdown-content {
  display: block;
}
.dropdown-section.active .dropdown-header {
  background: #f8f9fa;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.dropdown-section.active .dropdown-header i {
  transform: rotate(180deg);
}

.dropdown-header {
  padding: 15px 20px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 8px;
  gap: 10px;
}
.dropdown-header:hover {
  background: #f8f9fa;
}
.dropdown-header i {
  flex-shrink: 0;
  color: #666;
  margin-left: 10px;
  font-size: 18px;
  align-self: center;
  transition: transform 0.2s ease;
}

.dropdown-title {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}
.dropdown-title-text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  word-break: break-word;
  white-space: normal;
  line-height: 1.4;
  display: block;
}

.dropdown-content {
  display: none;
  padding: 15px 20px;
  color: #555;
}
.dropdown-content h3 {
  margin: 10px 0;
  font-weight: bold;
  font-size: 18px;
}
.dropdown-content p {
  margin: 0;
  line-height: 1.6;
}
.dropdown-content ol {
  list-style: decimal;
}
.dropdown-content li {
  margin-left: 1rem;
}
.dropdown-content .semi-header {
  margin: 0.6rem 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
table th,
table td {
  border: 1px solid #e0e0e0;
  padding: 8px;
  text-align: left;
}
table th {
  background-color: #f8f9fa;
  font-weight: bold;
}

@media (min-width: 768px) {
  .faq-container {
    padding: 0 30px;
  }
  .dropdown-container {
    max-width: 100%;
  }
  .dropdown-section {
    margin-bottom: 12px;
  }
  .dropdown-header {
    padding: 20px 25px;
  }
  .dropdown-title-text {
    font-size: 18px;
  }
  .dropdown-content {
    padding: 15px 25px;
  }
}
/* Dropdown Styles from esim-list.php */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
  min-width: 200px;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.link-menu {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  position: relative;
}

.link-menu:hover {
  color: #f5f5f5;
}

/* Submenu styling */
.dropdown-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 1px;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-submenu:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
}

.submenu a:hover {
  background-color: #f0f0f0;
}

/* Panah ke kanan sejajar kanan */
.link-menu i {
  float: right;
  margin-left: 6px;
  margin-top: 4px;
}/*# sourceMappingURL=style.css.map */