@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
}

::selection {
  background-color: white;
  color: #1a1a1a;
}

body {
  background-color: rgb(22, 22, 22);
}

header {
  position: fixed;
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: rgb(20, 20, 20);
  width: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-150%);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.089);
  color: white;
  height: 100px;
  padding: 0 2%;
  z-index: 100;
  top: 0;
  animation: dropIn 1s ease forwards;
  transition:
    transform 0.5s ease,
    width 0.4s ease,
    border-radius 0.4s ease,
    top 0.4s ease,
    box-shadow 0.4s,
    border-bottom 0.5s,
    border 0.4s,
    background-color 0.4s ease;
}

@keyframes dropIn {
  0% {
    transform: translateX(-50%) translateY(-150%);
  }

  50% {
    transform: translateX(-50%) translateY(30%);
  }

  90%,
  100% {
    transform: translateX(-50%) translateY(0%);
  }
}

.header-no-drop,
.header-no-drop.extanded,
header.header-no-drop,
header.header-no-drop.extanded {
  animation: none !important;
  transform: translateX(-50%) translateY(0%) !important;
  transition: none !important;
  height: 100px !important;
  top: 0 !important;
  box-shadow: none !important;
  border-left: 1px solid rgba(255, 255, 255, 0) !important;
  border-right: 1px solid rgba(255, 255, 255, 0) !important;
  border-top: 1px solid rgba(255, 255, 255, 0) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.089) !important;
  background-color: rgb(20, 20, 20) !important;
  border-radius: 0 !important;
  width: 100%;
  pointer-events: auto !important;
}

header.extanded {
  width: 98%;
  border-radius: 40px;
  top: 2%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background-color: rgba(20, 20, 20, 0.856);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.7);
}

.title {
  font-size: 1.5vw;
  white-space: nowrap;
  cursor: pointer;
  color: white;
}

.pages-btns {
  display: flex;
  gap: 22px;
  font-size: 17px;
  white-space: nowrap;
  position: relative;
  padding-bottom: 8px;
}

.pages-btns a {
  text-decoration: none;
  color: rgb(197, 197, 197);
  cursor: pointer;
  padding: 2px 0;
  position: relative;
}

.pages-btns a:hover {
  color: white;
}

.pages-btns a.active {
  color: white;
  font-weight: 700;
}

.pages-btns .underline {
  position: absolute;
  bottom: 0;
  height: 4px;
  background: #ff7e33;
  border-radius: 8px;
  transform: translateX(0);
  transition: transform 360ms cubic-bezier(.2, .9, .2, 1), width 360ms cubic-bezier(.2, .9, .2, 1);
  pointer-events: none;
  will-change: transform, width;
}

.btns {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 2%;
}

.btns button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 700;
  color: rgb(199, 199, 199);
  background-color: #282828;
  border: 2px solid rgba(199, 199, 199, 0.65);
  border-radius: 20px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
}

.btns button:hover {
  background-color: rgb(199, 199, 199);
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 75, 181, 0.2);
}

.btns button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 75, 181, 0.15);
}

.btns button.active {
  background-color: rgb(199, 199, 199);
  color: black;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 75, 181, 0.15);
}

@media (max-width: 1024px) {
  header .title img {
    width: 44px;
  }

  header .pages-btns {
    gap: 16px;
    font-size: 15px;
  }

  header .btns button {
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 18px;
    min-width: 100px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 10px;
    gap: 16px;
  }

  header .title img {
    width: 40px;
  }

  header .pages-btns {
    gap: 12px;
    font-size: 14px;
    max-width: 55%;
  }

  header .btns {
    gap: 10px;
  }

  header .btns button {
    padding: 9px 16px;
    font-size: 14px;
    border-radius: 14px;
    min-width: 90px;
  }
}

@media (max-width: 480px) {
  header {
    height: 72px;
    padding: 0 8px;
  }

  header .title img {
    width: 32px;
  }

  header .pages-btns {
    gap: 8px;
    font-size: 12px;
    max-width: 42%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  header .btns {
    gap: 8px;
  }

  header .btns button {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 12px;
    min-width: 80px;
  }

  header .btns button i,
  header .btns button svg {
    font-size: 14px;
    margin-right: 6px;
  }

}

@media (max-width: 420px) {
  header {
    padding: 0 10px;
    height: 68px;
    gap: 8px;
  }

  header .title img {
    width: 28px;
  }

  header .pages-btns {
    gap: 6px;
    font-size: 11px;
    max-width: 36%;
    margin: 0 6px;
  }

  header .btns {
    gap: 6px;
  }

  header .btns button {
    padding: 6px 8px;
    font-size: 11px;
    border-radius: 13px;
    min-width: 74px;
    max-width: 140px;
  }

  header .btns button i,
  header .btns button svg {
    font-size: 13px;
    width: 13px;
    height: 13px;
    margin-right: 4px;
  }

}

@media (max-width: 360px) {
  header .pages-btns {
    display: none;
  }

  header .btns button {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 10px;
    min-width: 70px;
  }

  header .btns button i,
  header .btns button svg {
    font-size: 14px;
    margin-right: 4px;
  }

}




.overlay {
  background-image: url('../src/assets/rayfusion.webp');
  background-size: 100%;
  background-repeat: no-repeat;
  object-fit: cover;
  width: 100%;
  height: 115vh;
  position: relative;
}

.dots {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.226);
  position: relative;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.05) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 2px);
  background-size: 40px 40px, 20px 20px;
}

.overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to top,
      rgba(22, 22, 22, 1) 0%,
      rgba(22, 22, 22, 0.9) 20%,
      rgba(22, 22, 22, 0.7) 40%,
      rgba(22, 22, 22, 0.4) 60%,
      rgba(22, 22, 22, 0.15) 80%,
      rgba(22, 22, 22, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.overlay-content {
  position: absolute;
  top: 42%;
  left: 43%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ov-title {
  font-weight: 800;
  font-size: 3.9vw;
  white-space: nowrap;
  color: white;
  opacity: 0;
}

.overlay span {
  position: relative;
  font-weight: 400;
  font-size: 50px;
  color: #f1f1f1;
  line-height: 1.3;
  width: 1200px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  opacity: 0;
  margin-bottom: 20px;
}

.overlay span a {
  color: #ff7e33;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
  opacity: 0;
  animation: slideUp 0.5s ease forwards;
}

.overlay span a:nth-of-type(1) {
  animation-delay: 0.6s;
}

.overlay span a:nth-of-type(2) {
  animation-delay: 0.9s;
}

.overlay span a:nth-of-type(3) {
  animation-delay: 1.1s;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.ov-btns {
  display: flex;
  gap: 10px;
  opacity: 0;
}

.ov-btns button {
  padding: 12px 24px;
  font-size: 19px;
  font-weight: 700;
  color: rgb(199, 199, 199);
  background-color: #282828;
  border: 2px solid rgba(199, 199, 199, 0.65);
  border-radius: 20px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  white-space: nowrap;
}

.ov-btns>* {
  opacity: 0;
  animation: slideUp 0.5s ease forwards;
}

.ov-btns>*:nth-child(1) {
  animation-delay: 1.5s;
}

.ov-btns>*:nth-child(2) {
  animation-delay: 1.615s;
}

.ov-btns button:hover {
  background-color: rgb(199, 199, 199);
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 75, 181, 0.2);
}

.ov-btns button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 75, 181, 0.15);
}


@media (max-width: 1200px) {
  .overlay {
    background-size: cover;
    background-position: center center;
    height: 100vh;
  }

  .dots {
    background-size: 30px 30px, 15px 15px;
    backdrop-filter: blur(8px);
  }

  .overlay::after {
    height: 150px;
  }

  .overlay-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 6%;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .ov-title {
    white-space: normal;
    text-align: center;
    font-size: clamp(28px, 4.2vw, 48px);
  }

  .overlay span {
    width: auto;
    max-width: 900px;
    font-size: clamp(18px, 3.6vw, 42px);
    text-align: center;
    margin: 0 auto 18px;
  }

  .ov-btns {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .overlay {
    height: 100vh;
    background-size: cover;
    background-position: center top;
  }

  .dots {
    background-size: 26px 26px, 13px 13px;
    backdrop-filter: blur(6px);
  }

  .overlay::after {
    height: 120px;
  }

  .overlay-content {
    top: 52%;
    padding: 0 8%;
    gap: 10px;
  }

  .ov-title {
    font-size: clamp(22px, 6.2vw, 40px);
    letter-spacing: 0.2px;
  }

  .overlay span {
    font-size: clamp(16px, 4.6vw, 32px);
    line-height: 1.4;
    max-width: 92%;
  }

  .ov-btns {
    gap: 8px;
    flex-wrap: wrap;
  }

  .ov-btns button {
    padding: 10px 16px;
    font-size: 15px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .overlay {
    height: 100vh;
    background-position: center top;
  }

  .dots {
    background-size: 20px 20px, 10px 10px;
    backdrop-filter: blur(5px);
  }

  .overlay::after {
    height: 90px;
  }

  .overlay-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 6%;
    gap: 8px;
    width: 100%;
  }

  .ov-title {
    font-size: clamp(18px, 7.5vw, 30px);
    white-space: normal;
    text-align: center;
  }

  .overlay span {
    font-size: clamp(14px, 4.8vw, 22px);
    line-height: 1.35;
    max-width: 100%;
    padding: 0;
    margin-bottom: 14px;
  }

  .ov-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .ov-btns button {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border-radius: 18px;
  }
}


.parallax-section {
  position: relative;
  width: 100%;
}

.parallax-viewport {
  position: sticky;
  top: 100px;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgb(22, 22, 22), rgb(24, 24, 24), rgb(26, 26, 26));
  overflow: hidden;
  border-bottom: 1px solid #333;
  z-index: 10;
}

.parallax-viewport::before,
.parallax-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 15%;
  z-index: 20;
  pointer-events: auto;
  cursor: default;
}

.parallax-viewport::before {
  left: 0;
  background: linear-gradient(to right,
      rgba(22, 22, 22, 1) 0%,
      rgba(22, 22, 22, 1) 30%,
      rgba(22, 22, 22, 0) 100%);
}

.parallax-viewport::after {
  right: 0;
  background: linear-gradient(to left,
      rgba(22, 22, 22, 1) 0%,
      rgba(22, 22, 22, 1) 30%,
      rgba(22, 22, 22, 0) 100%);
}

.parallax-title {
  color: white;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 99999999;
  font-size: 40px;
  margin: 0;
  pointer-events: none;
  text-align: center;
}

.parallax-title.desc {
  color: #cccccc;
}

.parallax-progress {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translateX(-50%);
  width: 80%;
  height: 30px;
  background: #303030;
  border-radius: 20px;
  overflow: hidden;
  z-index: 9999;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #ff7e33;
  border: 8px solid #303030;
  border-radius: 20px;
  transition: width .25s ease;
}

.parallax-strip {
  display: flex;
  gap: 2.5rem;
  will-change: transform;
  transition: none;
  padding-left: 0;
  align-items: center;
  height: 280px;
  box-sizing: border-box;
}

.parallax-slide {
  flex: 0 0 460px;
  width: 460px;
  height: 280px;
  display: block;
  cursor: zoom-in;
  box-sizing: border-box;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.parallax-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, filter 0.35s ease;
}

.parallax-slide:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.parallax-slide.active img {
  transform: scale(1.12);
  filter: brightness(1.15);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.parallax-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.25));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.parallax-slide:hover::after {
  opacity: 1;
}


.parallax-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
  z-index: 999999;
}

.parallax-nav i {
  pointer-events: all;
  cursor: pointer;
  font-size: 2rem;
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.parallax-nav i:hover {
  color: #fff;
}

.image-modal {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.image-modal .close-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .parallax-title {
    font-size: 34px;
    top: 12%;
    text-align: center;
    padding: 0 16px;
  }

  .parallax-progress {
    top: 78%;
    height: 24px;
  }

  .parallax-strip {
    gap: 2rem;
    height: 240px;
  }

  .parallax-slide {
    flex: 0 0 360px;
    height: 240px;
  }
}

@media (max-width: 720px) {
  .parallax-title {
    font-size: 26px;
    top: 8%;
    padding: 0 12px;
  }

  .parallax-progress {
    width: 90%;
    top: 82%;
    height: 20px;
  }

  .parallax-strip {
    gap: 1.5rem;
    height: 200px;
  }

  .parallax-slide {
    flex: 0 0 72vw;
    height: 200px;
  }

  .parallax-nav {
    padding: 0 1rem;
  }

  .parallax-nav i {
    font-size: 1.6rem;
  }

  .image-modal .close-btn {
    top: 20px;
    right: 20px;
    font-size: 28px;
  }

  .image-modal img {
    max-width: 95%;
    max-height: 80%;
  }

  .zoom-controls {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 12px;
  }

  .zoom-controls button {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 8px;
  }
}

@media (max-width: 420px) {
  .parallax-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .parallax-progress {
    top: auto;
    bottom: 30px;
    height: 16px;
  }

  .parallax-strip {
    gap: 1rem;
    height: 160px;
  }

  .parallax-slide {
    flex: 0 0 82vw;
    height: 160px;
  }

  .parallax-nav i {
    font-size: 1.4rem;
  }
}

footer {
  background: #121212;
  color: #d0d0d0;
  padding: 50px 60px 30px;
  border-top: 1px solid rgba(197, 197, 197, 0.116);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.footer-brand h2 {
  font-size: 24px;
  color: #ff7e33;
  margin: 0;
}

.footer-brand p {
  font-size: 14px;
  color: #aaa;
  margin: 5px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.link-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-section h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #ffffff;
}

.link-section a i {
  margin-right: 1px;
}

.link-section a i svg {
  width: 20px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  margin-left: -2px;
}

.link-section a img {
  width: 20px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  color: #bbb;
  margin-left: -2px;
  filter: grayscale(100%);
  opacity: 0.85;
  background: transparent;
}

.link-section a {
  text-decoration: none;
  color: #bbb;
  font-size: 14px;
  transition: color 0.3s;
  position: relative;
  display: inline-flex;
  gap: 2px;
}

.link-section a:not(:has(svg)) {
  text-decoration: none;
  color: #bbb;
  font-size: 14px;
  transition: color 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.link-section a:hover {
  color: #ff7e33;
}

.link-section a.active {
  color: #ff7e33;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #888;
}

.cart {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  user-select: none;
}

.cart-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 400px;
  background-color: #1f1f1f;
  border: 1px solid rgba(199, 199, 199, 0.4);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 100;
  overflow: hidden;
  padding: 12px;
}

.cart-menu.show {
  display: block;
  animation: fadeIn 0.15s ease-out;
}

.cart-packages {
  max-height: 300px;
  overflow-y: auto;
  display: block;
  gap: 10px;
}

.cart-packages::-webkit-scrollbar {
  width: 0px;
}

.cart-packages>.cart-package {
  margin-bottom: 10px;
}

.cart-package {
  display: flex;
  position: relative;
  gap: 12px;
  background: #161616;
  border-radius: 10px;
  padding: 10px 10px;
  height: 80px;
  overflow: hidden;
  min-height: 80px;
}

.cart-package img {
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
}

.cart-package .info {
  flex: 1;
}

.cart-package .info h4 {
  margin: 0;
  font-size: 15px;
  color: white;
}

.cart-package .info span {
  font-size: 14px;
  font-weight: 600;
  color: #0059ff;
}

.cart-package a {
  background: none;
  color: #a3a3a3;
  border: none;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  right: 3%;
  top: 0%;
  position: absolute;
}

.cart-package a:hover {
  color: #0059ff;
}

.cart-summary {
  border-top: 1px solid #333;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: #ccc;
}

.summary-row.total {
  font-weight: bold;
  color: #fff;
  border-top: 1px solid #444;
  padding-top: 10px;
}


#checkout-btn:hover {
  background: white;
  color: black;
}

#checkout-btn.disabled-btn {
  background: #333 !important;
  color: #777 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  transform: none !important;
}


@media (max-width: 1024px) {
  .cart-menu {
    min-width: 300px;
    max-width: 360px;
    width: auto;
    right: 0;
    left: auto;
    padding: 14px;
  }

  .cart-packages {
    max-height: 320px;
  }

  .cart-package {
    height: 84px;
    min-height: 84px;
    padding: 12px;
    gap: 14px;
  }

  .cart-package img {
    height: 64px;
  }

  .cart-package .info h4 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .cart-menu {
    position: fixed !important;
    top: 74px;
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
    max-width: none;
    border-radius: 12px;
    background-color: #1b1b1b;
    border: 1px solid rgba(199, 199, 199, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    padding: 10px;
    display: none;
    z-index: 1200;
    overflow: hidden;
  }

  .cart-menu.show {
    display: block;
    animation: fadeIn .12s ease-out;
  }

  .cart-packages {
    max-height: calc(40vh);
    overflow-y: auto;
    padding-right: 6px;
  }

  .cart-package {
    height: 88px;
    min-height: 88px;
    padding: 12px;
    gap: 12px;
    background: #161616;
    border-radius: 10px;
  }

  .cart-package img {
    height: 68px;
    width: auto;
    flex: 0 0 68px;
    object-fit: cover;
    border-radius: 8px;
  }

  .cart-package .info h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .cart-package .info span {
    font-size: 14px;
  }

  .cart-package a {
    font-size: 20px;
    right: 12px;
    top: 8px;
  }

  .cart-summary {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #333;
    gap: 12px;
  }

  .summary-row {
    font-size: 15px;
  }

  .summary-row.total {
    font-size: 16px;
  }

  #checkout-btn {
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 12px;
  }
}

@media (max-width: 420px) {
  .cart-menu {
    top: 70px;
    left: 8px;
    right: 8px;
    width: calc(100% - 16px);
    padding: 10px;
    border-radius: 10px;
  }

  .cart-packages {
    max-height: calc(38vh);
    gap: 8px;
  }

  .cart-package {
    height: 84px;
    padding: 10px;
    gap: 10px;
  }

  .cart-package img {
    height: 62px;
    flex: 0 0 62px;
  }

  .cart-package .info h4 {
    font-size: 14px;
  }

  .cart-package .info span {
    font-size: 13px;
  }

  .cart-summary {
    gap: 8px;
  }

  .summary-row {
    font-size: 14px;
  }

  .summary-row.total {
    font-size: 15px;
  }

  #checkout-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-radius: 14px;
  }
}

@media (max-width: 360px) {
  .cart-menu {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 60vh;
    border-radius: 12px 12px 0 0;
    padding: 8px 8px 12px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
  }

  .cart-packages {
    max-height: calc(48vh);
    padding: 6px;
  }

  .cart-package {
    height: 78px;
    padding: 10px;
    gap: 10px;
  }

  .cart-package img {
    height: 56px;
    flex: 0 0 56px;
  }

  .cart-summary {
    padding-top: 10px;
    gap: 8px;
  }

  #checkout-btn {
    padding: 12px;
    font-size: 14px;
    width: 100%;
    border-radius: 14px;
  }
}

.cart-menu .cart-package a:focus,
.cart-menu .cart-package a:hover {
  color: #0059ff;
}

@media (max-width: 768px) {
  .cart-menu {
    -webkit-overflow-scrolling: touch;
  }
}

.cart-menu.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.langs {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  user-select: none;
}

.selected-option img {
  width: 20px;
  height: auto;
  border-radius: 3px;
}


.langs-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background-color: #1f1f1f;
  border: 1px solid rgba(199, 199, 199, 0.4);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 100;
  overflow: hidden;
}

.langs-menu.show {
  display: block;
  animation: fadeIn 0.15s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.langs-menu .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #e0e0e0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.option .lang-label {
  flex: 1;
}

.option i.fa-check {
  font-size: 14px;
  display: none;
  transition: opacity 0.2s ease;
}

.option.selected i.fa-check {
  opacity: 1;
  display: flex;
}

.langs-menu .item img {
  width: 20px;
  height: auto;
  border-radius: 3px;
}

.langs-menu .item+.item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.langs-menu .item span {
  flex: 1;
}

.langs-menu .item.logout {
  color: #ff6b6b;
}

.langs-menu .item:hover {
  background-color: #2a2a2a;
  color: #fff;
}

.langs-menu a.item {
  text-decoration: none;
}

.langs-menu .item i {
  font-size: 14px;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.langs-menu .item:hover i {
  opacity: 1;
}