body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: rgba(33,37,41,255);
  color: rgb(13, 129, 125);
}

.glassy-navbar {
  background: rgba(0, 0, 0, 0.4);         /* Dark translucent background */
  backdrop-filter: blur(12px);           /* Frosted blur effect */
  -webkit-backdrop-filter: blur(12px);   /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background-color: #1a1a1a;
  position: relative;
  flex-wrap: wrap;
}

.logo {
  position: absolute;
  left: 20px;
}

.logo img {
  height: 35px;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: rgb(13, 129, 125);
  font-size: 15px;
  font-family: 'MedievalSharp', fantasy;
  transition: background-color 0.3s, color 0.3s;
  padding: 5px 13px;
  border-radius: 20px;
}

.nav-links a:hover {
  background-color: #333;
  color: #fff;
}

.nav-links a.active {
  background-color: rgb(13, 129, 125);
  color: white;
  font-size: 18px;
  padding: 3px 24px;
  transition: all 0.3s ease;
}

.store-container {
  padding: 2rem;
}

.store-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(270deg, rgb(13, 129, 125), rgba(13, 129, 125, 0.584), #60e8fa95);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 8s ease infinite;
}

@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.store-wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  margin-top: 2rem;
}

.store-sidebar {
  background: rgba(255, 255, 255, 0.03); /* dark slate */
  padding: 1.5rem;
  border-radius: 1rem;
  height: 400px; /* fixed width */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.store-sidebar label {
  font-weight: 600;
}

.store-sidebar select,
.store-sidebar input[type="text"] {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgb(13, 129, 125);
  font-size: 0.95rem;
  width: 100%;
}

.price-range input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(to right, #3b82f6 50%, #ddd 50%);
  outline: none;
  transition: background 0.3s;
}

.price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
}

.price-range input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.currency-buttons button {
  background: rgb(13, 129, 125);
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.currency-buttons .active {
  background: rgb(13, 129, 125);
}

.store-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.store-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.store-card:hover {
  transform: scale(1.05);
}

.store-card img,
.store-card video {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.store-card h3 {
  font-size: 1.2rem;
}

.store-card .tags {
  font-size: 0.8rem;
  color: rgb(13, 129, 125);
}

.store-card .price {
  font-size: 1rem;
  font-weight: bold;
}

.store-card button {
  background-color: rgb(13, 129, 125);
  border: none;
  padding: 0.5rem;
  color: white;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.store-card button:hover {
  background-color: rgb(13, 129, 125);
}

.footer {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px 20px 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-column h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: #ccc;
}

.social-icons a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-decoration: none;
  color: #ccc;
}

.social-icons img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  gap: 15px;
}

.payments-grid img {
  width: 100px;
  height: 50px;
  border-radius: 10px;
  background-color: rgb(26, 46, 45);
  object-fit: cover;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 0;
  color: #888;
  font-size: 14px;
  border-top: 1px solid #1e1e2e;
  margin-top: 40px;
}

/* Loader Overlay Wrapper */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 15, 15, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader Overlay Wrapper */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 15, 15, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Existing loader styles */
.loader {
  width: 80px;
  height: 50px;
  position: relative;
}

.loader-text {
  position: absolute;
  top: 0;
  padding: 0;
  margin: 0;
  color: #C8B6FF;
  animation: text_713 3.5s ease both infinite;
  font-size: .8rem;
  letter-spacing: 1px;
}

.load {
  background-color: #9A79FF;
  border-radius: 50px;
  display: block;
  height: 16px;
  width: 16px;
  bottom: 0;
  position: absolute;
  transform: translateX(64px);
  animation: loading_713 3.5s ease both infinite;
}

.load::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #D1C2FF;
  border-radius: inherit;
  animation: loading2_713 3.5s ease both infinite;
}

@keyframes text_713 {
  0% { letter-spacing: 1px; transform: translateX(0px); }
  40% { letter-spacing: 2px; transform: translateX(26px); }
  80% { letter-spacing: 1px; transform: translateX(32px); }
  90% { letter-spacing: 2px; transform: translateX(0px); }
  100% { letter-spacing: 1px; transform: translateX(0px); }
}

@keyframes loading_713 {
  0% { width: 16px; transform: translateX(0px); }
  40% { width: 100%; transform: translateX(0px); }
  80% { width: 16px; transform: translateX(64px); }
  90% { width: 100%; transform: translateX(0px); }
  100% { width: 16px; transform: translateX(0px); }
}

@keyframes loading2_713 {
  0% { transform: translateX(0px); width: 16px; }
  40% { transform: translateX(0%); width: 80%; }
  80% { width: 100%; transform: translateX(0px); }
  90% { width: 80%; transform: translateX(15px); }
  100% { transform: translateX(0px); width: 16px; }
}

/* Tablet */
@media (max-width: 768px) {
  .nav-links {
    gap: 25px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 6px 12px;
  }

  .nav-links a.active {
    font-size: 16px;
    padding: 6px 12px;
  }

  .logo img {
    height: 30px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .store-wrapper {
    grid-template-columns: 1fr;
  }

  .store-sidebar {
    order: 2;
  }

  .store-items {
    order: 1;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .logo {
    position: relative;
    left: 0;
    margin-bottom: 10px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }

  .nav-links.show {
    max-height: 300px;
    opacity: 1;
  }

  .nav-links a {
    font-size: 13px;
    padding: 8px 12px;
  }

  .nav-links a.active {
    font-size: 14px;
    padding: 4px 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}