/* Web fonts removed for Tor Browser compatibility - using system font stacks instead */

code, pre {
    font-family: 'Monaco', 'Cascadia Code', 'Courier New', Courier, monospace, monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif, sans-serif;
}

body {
    background: #1D1D1E;
    color: #E5E7EB;
}

/* Main container */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    gap: 34px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
    height: 100px;
    background: #1D1D1E;
    border-bottom: 1px solid #222223;
}

.logo {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 74%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

h2 {
font-family: 'Monaco', 'Cascadia Code', 'Courier New', Courier, monospace, monospace;
font-size: 42px;
font-weight: 700;
color: #ffffff;
text-transform: uppercase;
animation: neonPulse 1.5s ease-in-out infinite alternate;
letter-spacing: 4px;
text-align: center;
margin: 30px 0;
text-shadow:
0 0 5px #fff,
0 0 10px #fff,
0 0 20px #ff00de,
0 0 40px #ff00de,
0 0 80px #ff00de;
}
@keyframes neonPulse {
from {
text-shadow:
0 0 5px #fff,
0 0 10px #fff,
0 0 20px #ff00de,
0 0 40px #ff00de,
0 0 80px #ff00de;
}
to {
text-shadow:
0 0 2px #fff,
0 0 5px #fff,
0 0 10px #ff00de,
0 0 20px #ff00de,
0 0 40px #ff00de;
}
}

.image-display {
    max-width: 100%;
    max-height: 600px; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  

  

.verify-icon {
    height: 40px; 
    width: 50px;
    display: inline; 
}

.vrf-icon {
    background: #2A2A2B;
    padding: 5px;
    border-radius: 6px;
    width: 49px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute; 
    bottom: 70px;  
    left: 22px; 
    margin-left: 60px;
}
.tooltip {
    visibility: hidden;
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;

    position: absolute;
    left: 100%;  
    top: 50%;  
    transform: translateY(-50%); 
    margin-left: 10px; 
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.vrf-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
}


.dropdown {
    position: relative;
    display: inline-block;
  }
  
.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: linear-gradient(180deg, rgba(166, 34, 136, 0.5) 0%, rgba(53, 11, 43, 0.5) 100%);
    border: 0.8px solid #A62288;
    border-radius: 5px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for glow */
  
  }

.dropdown-btn:hover {
    background: rgba(140, 20, 110, 0.7);
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(166, 34, 136, 0.8); /* Glow effect */
  }

.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 130px;
    background: rgba(50, 50, 50, 0.9);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
    box-shadow: 0 0 12px rgba(166, 34, 136, 0.5); /* Glow effect */
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
    text-align: center;
  }

.dropdown-menu a:hover {
    background: rgba(166, 34, 136, 0.7);
  }

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

.nav-items{
    display: flex;
    height: 40px;
    gap: 20px;
    align-items: center;
  }

  .menu{
    text-align: center;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  }

.file-hosting-btn {
  width: 168px;
  height: 40px;
  opacity: 1;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  gap: 8px;
  border-radius: 5px;
  border-width: 0.8px;
  background: linear-gradient(180deg, rgba(166, 34, 136, 0.5) 0%, rgba(53, 11, 43, 0.5) 100%);
  border: 0.8px solid #A62288;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 24px;
letter-spacing: 0%;
color: #FFFFFF;
text-decoration: none;
text-align: center;
}

.file-hosting-btn img {
    width: 24px;
    height: 24px;
    transform: scaleX(-1); /* Mirror the arrow image */
}

.menu-wrapper{
  position: relative;
  display: inline-block;
}

.menu-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  
  border-radius: 5px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  scale: 1;
  transition: all 0.3s ease-in-out;
}

.menu-dropdown{
  position: absolute;
  top: 100%;
  left: -50%;
  visibility: hidden;
  width: 158px;
  opacity: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 4px;
  border-radius: 8px;
  border-width: 1px;
  background: #383838;
  border: 1px solid #383838;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  transform: translateY(-10px);
}

.menu-dropdown a{
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #FFFFFF;
  transition: all 0.2s ease;
}


.menu-wrapper:hover .menu-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-btn:hover{
  scale: 1.1;
}   


.Categories-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  
  border-radius: 5px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  scale: 1;
  transition: all 0.3s ease-in-out;
}

.categories-wrapper {
  position: relative;
  display: inline-block;
}

.categories-dropdown {
  position: absolute;
  top: 100%;  
  left: 0;
  visibility: hidden;
  width: 141px;
opacity: 0;
padding-top: 8px;
padding-bottom: 8px;
gap: 4px;
border-radius: 8px;
border-width: 1px;
background: #383838;
border: 1px solid #383838;
z-index: 1000;
transform: translateY(-10px);
transition: all 0.3s ease-in-out;
}

.categories-dropdown a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 24px;
letter-spacing: 0%;
color: #FFFFFF;
  transition: all 0.2s ease;
}

.categories-dropdown a:hover, .menu-dropdown a:hover{
  background: rgba(166, 34, 136, 0.7);
  color: #FFFFFF;
}

/* Updated hover selector */
.categories-wrapper:hover .categories-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Show dropdown on hover */
.Categories-btn:hover {
  scale: 1.1;
}

.Categories-btn:hover .categories-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.hero-section h1 {
    width: 331px;
    height: 40px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
    color: #A62288;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.hero-section p {
    font-family: 'Monaco', 'Cascadia Code', 'Courier New', Courier, monospace, monospace;
    font-size: 20px;
    line-height: 26px;
    color: #CCCCCC;
    width: 589px;
    height: 26px;
}

.market-banner{
  width: fit-content;
  height: auto;
  display: flex;
  gap: 34px;
  justify-content: center;
  align-items: center;
  padding: 34px;
  transition: all 0.3s ease-in-out;
}

.market-banner img{
  width: 100%;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 5px 10px;
    margin: 20px 0;
}

.main-nav a {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    
   
    
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  
   
    color: #E5E7EB;
    text-decoration: none;
    
    box-sizing: border-box;
    border-radius: 5px;
}

.main-nav a.active {
    background: rgba(166, 34, 136, 0.1);
    border: 0.8px solid #A62288;
}

/* Add this new style for the separator */
.nav-container {
    position: relative;
    border-bottom: 1px solid #222223;
    width: 100%;
    padding-bottom: 20px; /* Add space between text and line */
}

/* Shops Grid */
.shops-grid {
    display: grid;
    grid-template-columns: repeat(3, 342px); /* Exact width for each card */
    gap: 28px;
    width: fit-content; /* This ensures the grid takes only the space it needs */
    margin: 0 auto; /* Centers the grid horizontally */
    padding: 34px 0; /* Remove horizontal padding */
    transition: all 0.3s ease-in-out;
}

.shop-card {
    width: 342px; 
    background: rgba(56, 56, 56, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 250px;
    position: relative;
}

/* Update the section label to align with grid */
.section-label {
    text-align: center;
    color: #E5E7EB;
    font-size: 16px;
    margin: 20px auto; /* Center the label */
    width: fit-content;
}

.shops-section h2{
    font-size: 80px;
    color: #E5E7EB;
    line-height: 24px;
    font-weight: 500;
}

.shop-card h3 {
    font-size: 32px;
    color: #E5E7EB;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.shop-card p {
    font-size: 16px;
    line-height: 26px;
    color: #CCCCCC;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.link-icon {
    background: #2A2A2B;
    padding: 5px;
    border-radius: 6px;
    width: 49px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    bottom: 70px;
    z-index: 1;
}

.card-actions {
    display: flex;
    gap: 16px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.verify-btn, .mirrors-btn {
    width: 144px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 10px;
    background: linear-gradient(180deg, rgba(166, 34, 136, 0.5) 0%, rgba(53, 11, 43, 0.5) 100%);
    border: 0.8px solid #A62288;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    min-height: 288px;
    background: var(--color-bg);
    border-top: 1px solid #222223;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    max-width: 1440px;
    margin: 0 auto;
    min-height: inherit;
    position: relative;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.footer-nav.primary {
    width: 368px;
}

.footer-nav.secondary {
    width: 174px;
    margin-top: 10px;
}

.nav-link {
    color: #CCCCCC;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    padding: 10px 0;
}


.copyright {
    color: #CCCCCC;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Hover effect */
.nav-link:hover {
    color: var(--color-primary);
} 
/* Add this to your existing CSS */

.placeholder-grid {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.placeholder-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 28px;
}


.placeholder-card {
    width: 342px;
    height: 122px;
    background: rgba(56, 56, 56, 0.2);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 2px solid transparent;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Hover effect */
.placeholder-card:hover {
    border: 2px solid #A62288;
    box-shadow:
        0px 0px 4px rgba(0, 0, 0, 0.1),
        0px 0px 20px rgba(166, 34, 136, 0.5),
        0px 0px 40px rgba(10, 132, 255, 0.3);
    transform: translateY(-4px);
}

.placeholder-card img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 5px;
    transition: filter 0.3s ease;
}

.placeholder-card:hover img {
    filter: brightness(1.1);
}

.shops-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Add this new class for the content wrapper */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 100px;
}

/* Add these media queries at the end of your CSS file */

/* Larger tablets and smaller desktops */
@media screen and (max-width: 1200px) {
    .main-container {
        padding: 0 20px;
    }

    .placeholder-grid {
        padding: 20px 0;
    }

    .placeholder-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .placeholder-card {
        width: calc(50% - 10px); /* Two cards per row with gap */
        min-width: 280px;
    }

    /* Adjust shops grid */
    .shops-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        gap: 20px;
        padding: 20px 0;
    }

    .shop-card {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
  /* Header adjustments */
  .header {
      padding: 10px 15px;
      height: auto;
  }

  .logo {
      width: 150px;
      height: 54px;
  }

  .file-hosting-btn {
      padding: 5px 8px;
      font-size: 14px;
  }

  .market-banner{
    width: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .market-banner img{
    width: 100%;
    height: 200px;
  }
  /* Hero section */
  .hero-section h1 {
      font-size: 28px;
      padding: 0 15px;
  }

  .hero-section p {
      font-size: 16px;
      padding: 0 15px;
  }

  /* Navigation */
  .main-nav {
      gap: 20px;
      padding: 15px 10px;
  }

  /* Placeholder grid */
  .placeholder-card {
      width: calc(100% - 30px);
      height: 100px;
      margin: 0 15px;
  }

  /* Shops grid */
  .shops-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 20px 15px;
  }

  .shop-card {
      padding: 15px;
  }

  /* Card actions */
  .card-actions {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px;
  }


  .verify-btn, .mirrors-btn {
      flex: 1;
      min-width: 140px;
      
  }
}

/* Tablets and large phones */
@media screen and (max-width: 768px) {
    /* Header adjustments */
    .header {
        padding: 10px 15px;
        height: auto;
    }

    .logo {
        width: 150px;
        height: 54px;
    }

    .file-hosting-btn {
        padding: 5px 8px;
        font-size: 14px;
    }

    .market-banner{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 10px;
    }
    .market-banner img{
      width: 100%;
    }
    /* Hero section */
    .hero-section h1 {
        font-size: 28px;
        padding: 0 15px;
    }

    .hero-section p {
        font-size: 16px;
        padding: 0 15px;
    }

    /* Navigation */
    .main-nav {
        gap: 20px;
        padding: 15px 10px;
    }

    /* Placeholder grid */
    .placeholder-card {
        width: calc(100% - 30px);
        height: 100px;
        margin: 0 15px;
    }
    .shop-card h3 {
        font-size: 20px;
    }
    /* Shops grid */
    .shops-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }

    /* Card actions */
    .card-actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }


    .verify-btn, .mirrors-btn {
        flex: 1;
        min-width: 140px;

    }
}


/* Small phones (iPhone SE and similar) */
@media screen and (max-width: 481px) {
    .header {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        transition: all 0.3s ease-in-out;
    }

    .logo {
        width: 130px;
        height: 47px;
    }

    .market-banner img{
      width: 100%;
      height: 100%;
    }

    .file-hosting-btn {
       font-size: 10px;
       flex-wrap: wrap;
       width: 100%;
       justify-content: center;
       align-items: center;
       text-align: center;
       padding: 5px 10px;
       gap: 8px;
       border-radius: 5px;
    }

    .menu-dropdown{
      width: 140px;
    }
    .categories-dropdown{
      width: 130px;
    }

    .Categories-btn, .menu-btn{
      font-size: 12px;
    }

    .menu-dropdown a, .categories-dropdown a{
      font-size: 12px;
    }


    .file-hosting-btn img{
      width: 14px;
      height: 14px;
    }

    .hero-section h1 {
        font-size: 20px;
        text-align: center;
    }

    .hero-section p {
        font-size: 10px;
    }
    

    .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .placeholder-card {
        height: 90px;
    }

    .shop-card h3 {
        font-size: 20px;
    }

    .card-actions {
      bottom: 5px;
        flex-direction: column;
        padding-bottom: 5px;
    }

    .shop-card{
      padding-bottom: 25px;
    }

    .link-icon {
      width: 39px;
      height: 34px;
      padding: 5px;
      bottom: 90px;
    }

    .link-icon img{
      width: 20px;
      height: 20px;
    }

    .verify-btn, .mirrors-btn {
        width: 100%;
    }

    /* Footer adjustments */
    .footer-links-primary,
    .footer-links-secondary {
        flex-direction: column;
        gap: 15px;
    }

    .copyright {
        font-size: 14px;
        padding: 0 10px;
    }

    body .vendor-payments {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        justify-items: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

}

/* market heading */
.market-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.market-heading h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
color: #A62288;  
}

.market-heading p {
  font-family: 'Monaco', 'Cascadia Code', 'Courier New', Courier, monospace;
font-weight: 400;
font-size: 20px;
line-height: 26px;
letter-spacing: 0%;
color: #CCCCCC;
}

/* === Vendor Card Section === */
.vendor-list-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vendor-card {
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #2a2a2c 0%, #232325 100%);
  border: 1px solid rgba(166, 34, 136, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(166, 34, 136, 0.1);
  padding: 24px 32px;
  gap: 28px;
  width: 100%;
  min-height: 95px;
  position: relative;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.vendor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(166, 34, 136, 0.25), 0 0 0 1px rgba(166, 34, 136, 0.3);
  border-color: rgba(166, 34, 136, 0.5);
}

.vendor-card-left {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 18px;
  min-width: 0;
  width: 512px;
}

.vendor-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a2a2c, #1a1a1c);
  border: 2px solid rgba(166, 34, 136, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.vendor-card:hover .vendor-logo {
  border-color: rgba(166, 34, 136, 0.6);
  box-shadow: 0 4px 16px rgba(166, 34, 136, 0.3);
}

.vendor-logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.vendor-info {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.vendor-title-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.vendor-name {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(166, 34, 136, 0.5), 0 0 20px rgba(166, 34, 136, 0.2);
  background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 50%, #C9CACB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  position: relative;
}

.vendor-card:hover .vendor-name {
  text-shadow: 0 2px 15px rgba(166, 34, 136, 0.7), 0 0 25px rgba(166, 34, 136, 0.3);
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE5F8 50%, #E5C4DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vendor-verified {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendor-verified img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 4px rgba(166, 34, 136, 0.4));
}
.vendor-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0%;
  
  color: #2ECC71;
  opacity: 1;
  border-radius: 10px;
  padding-top: 2px;
  padding-right: 10px;
  padding-bottom: 2px;
  padding-left: 10px;
  background: #2A2A2B;
}

.vendor-status .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ECC71;
  display: inline-block;
}
.vendor-status-offline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0%;
  
  opacity: 1;
  border-radius: 10px;
  padding-top: 2px;
  padding-right: 10px;
  padding-bottom: 2px;
  padding-left: 10px;
  background: #2A2A2B;
  color: #f87171;
}
.status-dot-offline {
  background: #f87171;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.vendor-links {
  display: flex;
  gap: 8px;
}
.vendor-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #2A2A2B;
  border-radius: 8px;
  transition: all 0.2s;
}
.vendor-link img {
  width: 18px;
  height: 18px;
}


.vendor-card-center {
  width: 512px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.vendor-payments {
  display: flex;

  gap: 20px;
}
.payment-icon-tooltip {
  position: relative;
  display: flex;
  align-items: center;
}
.payment-icon {
  width: 44px;
  height: 44px;
  gap: 10px;
  background: linear-gradient(145deg, #2a2a2c, #1a1a1c);
  border: 1px solid rgba(166, 34, 136, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.payment-icon:hover {
  border-color: rgba(166, 34, 136, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(166, 34, 136, 0.3);
}

.payment-icon img {
  width: 24px;
  height: 24px;
}

.tooltip-text {
  visibility: hidden;
  width: auto;
  background-color: #2A2A2B;
  color: #E5E7EB;
  text-align: center;
  border-radius: 6px;
  padding: 8px 12px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif, sans-serif;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid #A62288;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #2A2A2B transparent transparent transparent;
}
.payment-icon-tooltip:hover .tooltip-text,
.payment-icon-tooltip:focus-within .tooltip-text {
  visibility: visible;
  opacity: 1;
}


.vendor-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1.5px solid #A62288;
  background: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.2px;
  color: #E5E7EB;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.vendor-view-btn:hover {
  background: rgba(166, 34, 136, 0.1);
  border-color: #C52AA0;
  color: #FFFFFF;
}

.vendor-view-btn .arrow {
  font-size: 13px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.vendor-view-btn:hover .arrow {
  transform: translateX(3px);
}

.vendor-payments-mobile, .vendor-card-left-mobile{
  display: none !important;
}

/* === Responsive Sizing for Vendor Card (no layout change) === */
@media (max-width: 1024px) {
  .vendor-logo-desktop, .vendor-info-desktop, .vendor-status-desktop{
    display: none !important;
  }
  .vendor-card {
    padding: 14px 10px;
  }
  .vendor-logo {
    width: 44px;
    height: 44px;
  }
  .vendor-logo img {
    width: 32px;
    height: 32px;
  }
  .payment-icon {
    width: 28px;
    height: 28px;
  }
  .payment-icon img {
    width: 16px;
    height: 16px;
  }
  .vendor-card-right {
    min-width: 70px;
  }
  .vendor-view-btn {
    font-size: 14px;
    padding: 9px 20px;
    font-weight: 600;
  }
  .vendor-view-btn .arrow {
    font-size: 12px;
  }
  .vendor-name {
    font-size: 17px;
  }
}

/* @media (max-width: 667px) {
  .vendor-card {
    min-height: 60px;
  }
  .vendor-card-left {
    gap: 0;
    width: 200px;
    align-items: end;
    justify-content: center;
  }
  .vendor-link{
    width: 20px;
    height: 20px;
  }
  .vendor-link img{
    width: 10px;
    height: 10px;
  }
  .vendor-logo {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .vendor-logo img {
    width: 30px;
    height: 30px;
  }
  .vendor-status , .vendor-status-offline{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
  }
  .vendor-card-center{
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap !important;
  }
  .vendor-payments{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap !important;
    gap: 10px;
  }
  .payment-icon {
    width: 18px;
    height: 18px;
  }
  .payment-icon img {
    width: 10px;
    height: 10px;
  }
  .vendor-card-right {
    min-width: 48px;
  }
  .vendor-view-btn {
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
  }
  .vendor-view-btn .arrow {
    font-size: 11px;
  }
  .vendor-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }
  .vendor-status , .vendor-status-offline{
    font-size: 8px;
    padding: 1px 6px;

    max-width: 200px;
    white-space: nowrap;
  }
  .vendor-status .status-dot , .vendor-status-offline .status-dot-offline{
    width: 4px;
    height: 4px;
  }
} */

@media (max-width: 480px) {

  .vendor-card{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    min-height: 100px;
    height: 115px;
    position: relative;
  }

  .vendor-card-center,
  .vendor-payments,.vendor-card-left-mobile {
    display: none !important;
  }
  .vendor-payments-mobile{
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: start !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
    min-width: 100% !important;
    position: absolute;
    bottom: 10px;
    right: -78px;
  }
  .payment-icon {
    width: 25px;
    height: 25px;
  }
  .payment-icon img {
    width: 15px;
    height: 15px;
  }
  .vendor-card-left-mobile{
    width: 100%;
    gap: 10px; 
    display: flex !important;
    flex-direction: row;
    justify-content: start ;
    align-items: center;
    flex-wrap: wrap;
  }
  .vendor-logo{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }
  .vendor-logo img{
    width: 50px;
    height: 50px;
  }
  .vendor-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .vendor-name{
    font-size: 12px;
  }
  .vendor-verified img{
    width: 20px;
    height: 20px;
  }
  .vendor-links{
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 20px;
  }
  .vendor-link{
    width: 30px;
    height: 30px;
  }
  .vendor-link img{
    width: 15px;
    height: 15px;
  }
  .vendor-status, .vendor-status-offline{
    width: 70px;
    height: 15px;
    font-size: 10px;
    line-height: 5px;
  }
  .vendor-status .status-dot{
    width: 10px;
    font-size: 10px;
    height: 10px;
  }
  .vendor-status-offline{
    font-size: 10px;
    line-height: 10px;
  }
  .vendor-status-offline .status-dot-offline{
    width: 10px;
  }
  .vendor-card-right{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
  }
  .vendor-view-btn{
    font-size: 10px;
    padding: 0 2px;
    max-width: 40px;
  }
}

/* @media (max-width: 481px) {
  .market-heading h2 {
    font-size: 25px;
}
.market-heading p {
    font-size: 15px;
}
  .vendor-card{
    justify-content: start;
    gap: 0;
  }
  .vendor-card-left{
    gap: 0;
    width: 150px;
  }
  .vendor-name {
    font-size: 10px;
    line-height: 10px;
  }
  .vendor-status {
    font-size: 5px;
    padding: 0 2px;
    max-width: 40px;
  }
  .vendor-logo img {
    width: 30px;
    height: 30px;
  }
  .vendor-verified img{
    width: 15px;
    height: 15px;
  }
  .vendor-link{
    width: 12px;
    height: 12px;
  }
  .vendor-link img {
    width: 5px;
    height: 5px;
  }
  .vendor-card-center{
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .payment-icon img {
    width: 5px;
    height: 5px;
  }
  .vendor-status, .vendor-status-offline{
    padding: 0 2px;
    max-width: 70px;
  }
  .vendor-status .status-dot, .vendor-status-offline .status-dot-offline {
    width: 2px;
    height: 2px;
  }
  .vendor-payments{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .vendor-view-btn{
    font-size: 10px;
    padding: 0 2px;
    max-width: 40px;
  }
  .vendor-card-center {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
  }
} */
