@font-face {
  font-family: "CustomFont";
  src: url("MarkPro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CustomFontBold";
  src: url("MarkProBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CustomFontMedium";
  src: url("MarkProMedium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  /* Font Aileleri */
  --font-primary: "CustomFont", Arial, sans-serif;
  --font-primary-bold: "CustomFontBold", Arial, sans-serif;
  --font-primary-medium: "CustomFontMedium", Arial, sans-serif;

  /* Font Boyutları */
  --font-size-big-bold: 90px;
  --font-size-big-bold-2: 72px;
  --font-size-big-bold-3: 64px;
  --font-size-big-regular: 80px;
  --font-size-big-regular-2: 72px;

  --font-size-mid-bold: 40px;
  --font-size-mid-bold-2: 56px;
  --font-size-mid-medium: 40px;
  --font-size-mid-medium-2: 56px;
  --font-size-mid-medium-3: 32px;
  --font-size-mid-regular: 40px;
  --font-size-mid-regular-2: 32px;

  --font-size-small-bold: 24px;
  --font-size-small-bold-2: 20px;
  --font-size-small-medium-: 24px;
  --font-size-small-regular: 24px;
  --font-size-small-regular-2: 20px;

  --font-size-xsmall-bold: 18px;
  --font-size-xsmall-bold-2: 16px;
  --font-size-xsmall: 18px;
  --font-size-xxsmall: 10px;
  --font-size-xxsmall-2: 15px;

  /* Renkler */
  --text-color-primary: #ec298f;
  --text-color-primary-light: #ffebf6;
  --text-color-light: #f6f7ff;
  --text-color-dark: #282a3d;
  --text-color-dark-mid-2: #4d5176;
  --text-color-dark-mid: #5e617d;
  --text-color-dark-mid-3: #8b8fc0;
}

body {
  margin: 0;
  padding: 0;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  /* height: 100%; */
  overflow-x: hidden;
  background-color: white;
  font-family: var(--font-primary);
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  /* height: 100%; */
  background-color: white; /* Arka plan beyaz */
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.buttons button {
  color: white !important;
}

.text-365 {
  margin-bottom: -20%;
  height: 25%;
  background-image: url("365.png");
  background-size: contain; /* Görsel ekran boyutuna göre ölçeklenir */
  background-position: center; /* Görseli ortala */
  background-repeat: no-repeat; /* Görseli tekrar ettirme */
}
/* Ana İçerik */
#main-content {
  position: relative;
  z-index: 2;
  max-width: 100vw;
}

.content-section {
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-align: center;
}
.content-section-1 {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-align: center;
}
.content-section h1 {
  font-size: 2rem;
  color: #333;
}

.content-section p {
  font-size: 1.2rem;
  color: #555;
}

.content-section.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  height: 60vh; /* Tam ekran yüksekliği */
  width: 100vw;
  padding: 20px;
  position: relative;
  z-index: 1;
  background-image: url("marketplace/header.png"); /* Sadece bu bölümde arka plan resmi */
  background-size: cover; /* Görsel ekran boyutuna göre ölçeklenir */
  background-position: center; /* Görseli ortala */
  background-repeat: no-repeat; /* Görseli tekrar ettirme */
  color: #fff; /* Yazılar için beyaz renk */
  gap: 30%;
}

.navbar {
  /* transform: translateY(10%); */
  position: fixed; /* Navbar'ı ekranın en üstüne sabitler */
  padding: 10px 50px; /* Sol ve sağdan boşluk ekler */
  top: 0; /* Sayfanın en üstüne hizalar */
  left: 0;
  width: 100%; /* Ekran genişliğini kaplar */
  box-sizing: border-box; /* Padding'i genişliğin içine dahil eder */
  color: white; /* Yazı rengi */
  display: flex;
  justify-content: space-between; /* Elemanları sola ve sağa hizalar */
  align-items: center; /* Dikeyde ortalar */
  z-index: 1; /* Diğer elemanların üzerinde görünmesi için */
  transition: transform 0.3s ease-in-out; /* Animasyon ekleyin */
}

.navbar.hidden {
  transform: translateY(-100%); /* Navbar'ı ekranın dışına taşır */
}

.logo-container {
  transform: translateX(15%);

  /* transform: translateY(-30%); */
  display: flex; /* İçeriği hizalamak için flexbox */
  justify-content: center; /* Yatayda ortalar */
  align-items: center; /* Dikeyde ortalar */
  position: relative; /* Diğer elemanlara göre konumlandırma için */
}
.header-text {
  font-size: var(--font-size-big-bold-3);
  font-family: var(--font-primary-bold);
}
.logo-image {
  transform: translateX(10%);
  width: 250px; /* PNG resmin genişliği (kapsayıcıya göre) */
  height: auto; /* Oranlı yükseklik */
  object-fit: contain; /* Görselin kutuya sığmasını sağlar */
  position: relative; /* Arka plan içinde serbestçe konumlanır */
}
/* .navbar .logo {
      font-size: 24px;
      font-weight: bold;
  } */

.navbar .nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar .btn-login {
  position: relative;
  padding: 10px 20px;
  background-image: url("marketplace/market-login-bg.png");
  display: inline-block; /* Butonları satır içinde hizala */
  width: 150px; /* Buton genişliği */
  height: 56px; /* Buton yüksekliği */
  cursor: pointer;
  background-repeat: no-repeat; /* Arka plan tekrar etmez */
  background-position: center; /* Arka planı ortalar */
  border: none; /* Kenarlık kaldırılır */
  cursor: pointer; /* Buton üzerinde imleç değişir */
  background-size: contain;
  background-color: transparent;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5;
  /* margin-top: 10%; */
}
.login-buttons-container {
  display: flex;
  gap: 10px;
}
.login-text-left {
  background-image: url("marketplace/market_name_bg.png");
  background-size: cover;
  text-align: center;
  align-items: end;
  justify-content: center;
  width: 20px;
}
.navbar .btn-wallet {
  position: relative;
  /* padding: 10px 20px; */
  background-image: url("marketplace/market-button.png");
  display: inline-block; /* Butonları satır içinde hizala */
  width: 180px; /* Buton genişliği */
  height: 56px; /* Buton yüksekliği */
  cursor: pointer;
  background-repeat: no-repeat; /* Arka plan tekrar etmez */
  background-position: center; /* Arka planı ortalar */
  border: none; /* Kenarlık kaldırılır */
  cursor: pointer; /* Buton üzerinde imleç değişir */
  background-size: contain;
  background-color: transparent;
  font-size: var(--font-size-xxsmall-2);
  align-items: center;
  justify-content: center;
  display: none;
}
.hero-content-inner {
  display: flex;
  justify-content: center;
  align-items: end;
  /* width: 100%; */
  /* max-width: 1200px; */
  /* margin-top: 50%; */
  /* margin-left: 50%;  */
  /* border-color: var(--text-color-dark-mid-3);
    border-width: 5px; */
}

.text-content {
  gap: 0px !important;
  display: flex;
  margin: 5px;
  flex-direction: row; /* Yan yana dizilmesi için eklendi */
  /* border-style: solid;
  border-color: var(--text-color-dark-mid-3);
  border-radius: 5px; /* Kenarları yuvarlar 
  border-width: 1px; */
  background-color: #fff;
}

.text-content-everything {
  font-size: var(--font-size-big-regular);
  line-height: 1; /* Satır yüksekliği */

  color: var(--text-color-primary); /* Yazı rengi */
  background-color: #fff; /* Arka plan rengi */
  padding: 10px 20px; /* Yazının etrafına boşluk ekler */

  display: inline-block; /* Arka planın sadece yazıya uygulanmasını sağlar */
  text-align: center; /* Yazıyı hizalar */
}

.text-content-rest {
  font-size: var(--font-size-big-regular);
  line-height: 1.2; /* Satır yüksekliği */
  color: #fff; /* Yazı rengi */
}

.text-content span {
  color: #fff;
  font-size: var(--font-size-big-regular);
}

.text-content p {
  font-size: var(--font-size-small-regular);
  line-height: 1;
  margin: 20px 0;
  color: #fff;
}

.toggle-box {
  width: 300px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: black;
  /* border: 2px solid #ccc; */
  cursor: pointer;
  font-family: var(--font-primary-bold);
  font-size: var(--font-size-small-bold-2);
  transition: background 0.3s ease;
}

.toggle-box.active {
  background: url("/marketplace/button-bg.png") center/cover no-repeat;
  color: white;
}
.combobox-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.clear {
  color: #282a3d;
}
select {
  width: 320px;
  height: 48px;
  padding-bottom: 5px;
  padding-top: 5px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
  font-family: var(--font-primary);
}

.grid-container {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, 250px);
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.item {
  /* gap: 15px; */
  width: 230px;
  height: 290px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.item img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.item p {
  margin: 10px 0;
  text-align: center;
  font-weight: bold;
}

.buttons {
  display: flex;
  gap: 8px;
  font-family: var(--font-primary);
}

.buttons button {
  width: 96px;
  height: 40px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button1 {
  background-color: var(--text-color-dark-mid-3);
}
.button2 {
  background-color: var(--text-color-primary);
}

/* Popup arkaplan */
.login-overlay {
  z-index: 55;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* %30 transparan */
  display: none; /* Başlangıçta gizli */
  justify-content: center;
  align-items: center;
}

/* Popup içeriği */
.login-popup {
  font-family: var(--font-primary-medium);
  color: var(--text-color-dark-mid-2);
  z-index: 56;
  background: white;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  justify-content: center;
  align-items: center;
}

/* Kapatma butonu */
.login-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  border: none;
  background: none;
  cursor: pointer;
}

/* Input alanları */
.login-input {
  width: 70%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Şifremi unuttum linki */
.login-forgot {
  display: block;
  color: #e91e63;
  text-decoration: none;
  margin-bottom: 10px;
}

/* Continue butonu */
.login-submit {
  width: 80%;
  height: 55px;
  background-color: transparent !important;
  background-image: url("account-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  justify-content: center;
  display: inline-flex;
  font-family: var(--font-primary-medium);
  font-size: var(--font-size-xsmall);
  text-align: center;
}

/* Footer yazısı */
.login-footer {
  font-size: 14px;
  margin-top: 10px;
}
.login-logo {
  width: 80%;
}

/* Login button container'a relative position eklendi */
#loginButton {
  position: relative;
}

/* User Dropdown Styles - Düzeltilmiş */
.user-dropdown {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 100%; /* Login butonunun hemen altında */
  left: 0;
  right: 0; /* Login butonunun genişliğine eşit olması için */
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-top: 2px; /* Login buton ile arasında küçük boşluk */
  height: 40px;
  /* min-width: 120px; */
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  cursor: pointer;
  color: #333;
  font-size: 14px;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
}

.dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}

.dropdown-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Alternatif - Eğer dropdown daha geniş olmasını istiyorsanız */
.user-dropdown-wide {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-top: 2px;
  width: max-content;
  min-width: 150px; /* Login butonundan biraz daha geniş */
}
@media screen and (max-width: 1450px) {
}
@media screen and (max-width: 1340px) {
  .grid-container {
    grid-template-columns: repeat(5, 200px);
  }
  .item {
    width: 120px;
    height: 190px;
  }
  .item img {
    width: 120px;
    height: 100px;
  }
  .buttons button {
    width: 50px;
    height: 30px;
    font-size: var(--font-size-xxsmall);
  }
}
@media screen and (max-width: 1295px) {
}

@media screen and (max-width: 1090px) {
  .grid-container {
    grid-template-columns: repeat(5, 150px);
  }
  .item {
    width: 120px;
    height: 190px;
  }
  .item img {
    width: 120px;
    height: 100px;
  }
  .buttons button {
    width: 50px;
    height: 30px;
    font-size: var(--font-size-xxsmall);
  }
}
@media screen and (max-width: 940px) and (max-height: 940px) {
  .header-text {
    font-size: var(--font-size-mid-bold);
  }
  .content-section.hero-content {
    height: 60vh;
  }
  .grid-container {
    grid-template-columns: repeat(5, 150px);
  }
  .item {
    width: 120px;
    height: 190px;
  }
  .item img {
    width: 120px;
    height: 100px;
  }
  .buttons button {
    width: 50px;
    height: 30px;
    font-size: var(--font-size-xxsmall);
  }
}
@media (max-width: 840px) {
  .grid-container {
    grid-template-columns: repeat(4, 150px);
  }
  .item {
    width: 120px;
    height: 190px;
  }
  .item img {
    width: 120px;
    height: 100px;
  }
  .buttons button {
    width: 50px;
    height: 30px;
    font-size: var(--font-size-xxsmall);
  }
}

@media screen and (max-width: 440px) {
  .logo-image {
    transform: translateX(10%);
    width: 120px; /* PNG resmin genişliği (kapsayıcıya göre) */
  }
  .navbar {
    padding: 0;
  }
  .navbar .btn-login {
    width: 70px;
  }

  .login-text-right,
  .login-text-left {
    font-size: 12px;
  }
  .navbar .btn-wallet {
    width: 120px;
    font-size: 10px;
    padding: 0 !important;
  }
  .header-text {
    font-size: var(--font-size-mid-bold);
  }
  .content-section.hero-content {
    height: 50vh;
  }
  .toggle-box {
    width: 160px;
  }
  select {
    width: 100px !important;
  }

  .item {
    width: 150px;
    height: 190px;
  }
  .item img {
    width: 120px;
    height: 100px;
  }
  .buttons button {
    width: 67px;
    height: 30px;
    font-size: var(--font-size-xxsmall);
  }
  .grid-container {
    grid-template-columns: repeat(2, 150px);
  }
}

/* Navigation Styles */
.navbar-custom {
  background: transparent;
  /* backdrop-filter: blur(10px); */
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
  padding: 1rem 0;
}

.logo-image {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero-section {
  padding: 7rem 0;
  text-align: center;
  /* color: white; */
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* Filter Section */
.filter-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-select {
  width: 100% !important;
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.btn-clear {
  background: transparent;
  border: 2px solid var(--text-color-primary);
  color: var(--text-color-primary);
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Grid Section */
.grid-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}

.nft-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.nft-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.nft-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.nft-info {
  padding: 1.5rem;
}

.nft-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.nft-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Login Modal Styles */
.modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  padding: 2rem;
  text-align: center;
}

.modal-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 2rem;
}

.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 16px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.btn-submit {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #e55a87;
  transform: translateY(-2px);
}

.text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  color: #e55a87;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .toggle-container {
    flex-direction: column;
    align-items: center;
  }

  .filter-section,
  .grid-section {
    margin: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .navbar-custom {
    padding: 0.5rem 0;
  }

  .btn-login,
  .btn-wallet {
    padding: 6px 8px;
    font-size: 0.7rem;
  }

  .toggle-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@font-face {
  font-family: "CustomFont";
  src: url("MarkPro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CustomFontBold";
  src: url("MarkProBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CustomFontMedium";
  src: url("MarkProMedium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --font-primary: "CustomFont", Arial, sans-serif;
  --font-primary-bold: "CustomFontBold", Arial, sans-serif;
  --font-primary-medium: "CustomFontMedium", Arial, sans-serif;
  --text-color-primary: #ec298f;
  --text-color-dark: #282a3d;
  --text-color-dark-mid-2: #4d5176;
  --font-size-xxsmall-2: 15px;
}

body {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  background-color: white;
}

/* Fixed Navbar Styles */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 10px 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.navbar-custom.hidden {
  transform: translateY(-100%);
}

/* Logo Styles */
.logo-image {
  width: 200px;
  height: auto;
  object-fit: contain;
}

/* Button Container - This is the key fix */
.button-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap; /* Prevent wrapping */
}

/* Login Button */
.btn-login {
  background-image: url("marketplace/market-login-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  width: 150px;
  height: 56px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xxsmall-2);
  font-family: var(--font-primary);
}
.login-text{
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xxsmall-2);
  font-family: var(--font-primary);
  color: var(--text-color-dark-mid);
  margin-left: 10px;
}

/* Wallet Button */
.btn-wallet {
  background-image: url("marketplace/market-button.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  width: 180px;
  height: 56px;
  color: white;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xxsmall-2);
  font-family: var(--font-primary);
}

/* Hero Section */
.hero-content {
  height: 60vh;
  background-image: url("marketplace/header.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  color: white;
  padding: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  font-family: var(--font-primary-bold);
}

/* Toggle Buttons */
.toggle-container {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.toggle-box {
  width: 300px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: black;
  cursor: pointer;
  font-family: var(--font-primary-bold);
  font-size: 20px;
  transition: background 0.3s ease;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.toggle-box.active {
  background: url("marketplace/button-bg.png") center/cover no-repeat;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-text{

  font-size: 10px !important;

  margin-left: 10px;
}
.first-letter{
  width: 15px !important;
  height: 15px !important;
   font-size: 10px !important;
}
  .hero-title {
    font-size: 2.5rem;
  }

  .logo-image {
    width: 150px;
  }

  .btn-login {
    width: 120px;
    height: 48px;
    font-size: 14px;
  }

  .btn-wallet {
    width: 140px;
    height: 48px;
    font-size: 12px !important;
  }

  .toggle-box {
    width: 200px;
    height: 60px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .logo-image {
    width: 120px;
  }

  .btn-login {
    width: 80px;
    height: 40px;
    font-size: 12px;
  }

  .btn-wallet {
    width: 100px;
    height: 40px;
    font-size: 10px !important;
  }

  .toggle-box {
    width: 160px;
    height: 50px;
    font-size: 14px;
  }

  .button-container {
    gap: 5px;
  }
}

/* Login Modal Styles */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.login-popup {
  background: white;
  padding: 30px;
  border-radius: 15px;
  width: 400px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  font-family: var(--font-primary-medium);
  color: var(--text-color-dark-mid-2);
}

.login-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
  color: #999;
}

.login-logo {
  width: 80%;
  margin-bottom: 20px;
}

.login-input {
  width: 80%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-primary);
}

.login-submit {
  width: 80%;
  height: 55px;
  background-color: var(--text-color-primary);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--font-primary-medium);
  font-size: 16px;
  margin-top: 10px;
}

.login-forgot {
  color: var(--text-color-primary);
  text-decoration: none;
  margin: 10px 0;
  display: block;
}

.login-footer {
  font-size: 14px;
  margin-top: 15px;
  color: #666;
}

.login-footer a {
  color: var(--text-color-primary);
  text-decoration: none;
}
