:root {
  --gold: #d4af37;
  --deep-gray: #121212;
}

body {
  background-color: var(--deep-gray);
  color: white;
}

.gold-text {
  color: var(--gold);
}

.gold-bg {
  background-color: var(--gold);
}

.gold-border {
  border-color: var(--gold);
}

.hover\:text-gold:hover {
  color: var(--gold);
}

#sideMenu a,
#sideMenu summary,
#sideMenu li {
  color: #f5f5f5;
}

#sideMenu a:hover {
  color: var(--gold);
}


.menu-background {
  background-color: #1e1e1e;
}

.shop-container {
  position: relative;
}

.shop-dropdown {
  position: relative;
  display: inline-block;
  font-size: 0.875rem; /* Smaller font size */
}

.shop-dropdown > button {
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.shop-dropdown > button:hover {
  color: var(--gold);
}

.shop-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1e1e1e;
  width: 600px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 10;
  border: 1px solid var(--gold);
  border-radius: 0.5rem;
  padding: 1rem;
}

.shop-dropdown:hover .shop-dropdown-content {
  display: flex;
  gap: 2rem;
}


.shop-column {
  flex: 1;
}

.shop-column-title {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
}

.shop-dropdown-content a {
  color: white;
  padding: 0.25rem 0;
  text-decoration: none;
  display: block;
  font-size: 0.8125rem; /* Smaller font */
  transition: all 0.2s ease;
}

.shop-dropdown-content a:hover {
  color: var(--gold);
}

.coming-soon {
  color: #999;
  font-size: 0.8125rem;
  font-style: italic;
}

/* Mobile styles */
@media (max-width: 768px) {
  .shop-dropdown-content {
    position: static;
    display: none;
    flex-direction: column;
    min-width: auto;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 0;
  }
  
  #sideMenu .shop-dropdown.active .shop-dropdown-content {
    display: flex;
  }
  
  .shop-column {
    padding-left: 1rem;
    margin-top: 0.5rem;
  }
}

/* Mobile Shop Dropdown Specific Styles */
#sideMenu .shop-dropdown {
  border-bottom: 1px solid #333;
  margin-bottom: 0.5rem;
}

#sideMenu .shop-dropdown-toggle {
  padding: 0.5rem 0;
}

#sideMenu details[open] summary {
  margin-bottom: 0.25rem;
}

#sideMenu details summary::-webkit-details-marker {
  display: none;
}

#sideMenu details summary {
  transition: all 0.2s ease;
}

#sideMenu details a {
  padding: 0.25rem 0;
}

.popular-dropdown {
  position: relative;
  display: inline-block;
}

.popular-dropdown-content {
  display: none;
  position: absolute;
  background-color: #1e1e1e;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border: 1px solid var(--gold);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
}

.popular-dropdown:hover .popular-dropdown-content {
  display: block;
}

/* Mobile styles */
#sideMenu .popular-dropdown-content {
  position: static;
  display: none;
  box-shadow: none;
  border: none;
  padding-left: 1rem;
}

#sideMenu .popular-dropdown.active .popular-dropdown-content {
  display: block;
}
