/* Navbar Container */
.nintendo-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Header */
.navbar-header {
  background: white;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  z-index: 1000;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nintendo-logo-container {
    background: #e60012;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2px 11px;
}

.nintendo-logo {
  background: #e60012;
  color: white;
  border: solid 4px white;
  padding: 2px 12px;
  border-radius: 16px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  margin: 10px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 12px;
}

.nav-item {
  background: none;
  border: none;
  color: #666;
  font-weight: 500;
  font-size: 16px;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s;
  font-weight: 700;
}

.nav-item:hover,
.nav-item.active {
  color: #e60012;
  background: #f8f9fa;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.action-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.action-btn:hover {
  background-color: #f0f0f0;
}

.login-btn {
  background: #ffffff;
  color: #e60012;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background: #cc0010;
}

.country-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.country-btn img {
  width: 24px;
  height: 18px;
}

/* Dropdown Overlay */
.dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.dropdown-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Dropdown Menu Base */
.mi-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.dropdown-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Explore Dropdown Specific */
.featured-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.category-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-image {
  width: 100px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 8px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.secondary-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.secondary-nav-item {
  background: none;
  border: none;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.secondary-nav-item:hover {
  color: #e60012;
  background-color: #f8f9fa;
}



.character-label {
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}

.character-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}


.navbar-left {
  display: flex;
  align-items: center;
}

.main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 10px;
}
  
  /* Promo Banner */
.promo-banner {
  background: #ffffff;
}

.promo-content {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
}

.promo-content a {
  color: rgb(72, 72, 72);
  font-size: 24px;
}


.centered-paragraphs {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.centered-paragraphs .divider {
  width: 1px;
  height: 2rem;
  background: rgb(72, 72, 72);
  margin: 8px 0;
  border-radius: 1px;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    margin: 0px;
}


.TU6v6 svg {
    color: #e60012 !important;

}

.icon-svg {
  width: 32px !important;
  height: 32px !important;
}

/* Dropdown Overlay */
.dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.dropdown-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Dropdown Menu Base */
.mi-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1050;
}

.dropdown-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Explore Dropdown Specific */
.featured-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.category-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-image {
  width: 100px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 8px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.secondary-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.secondary-nav-item {
  background: none;
  border: none;
  color: #666;
  font-size: 16px;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.secondary-nav-item:hover {
  color: #e60012;
  background-color: #f8f9fa;
}

.character-bar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.character-label {
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}

.character-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.character-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.3s;
  min-width: 80px;
  justify-content: center;
}


.character-item img {
  width: 30px;
  height: 30px;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

/* Base Button Styles */
.action-btn, .search-btn, .login-btn, .country-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn:hover, .search-btn:hover {
  background-color: #f0f0f0;
  color: #333;
}

.modal-fullwidth-custom {
  width: 100vw;
  max-width: 100vw;
  margin: 0; /* elimina el centrado */
  height: 50vh; /* ajusta la altura deseada */
  align-items: flex-start; /* alinea arriba del viewport */
}

.modal-content {
  height: 100%;
  border-radius: 0;
}

.border-0   {
  border: none;
}

.input-search {
  border-bottom: #cc0010 1px solid;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}





/* Login Button */
.login-btn {
  background: white !important;
  color:  #e60012 !important;
  border-radius: 20px !important;
  padding: 5px 22px !important;
  border: 1px solid #e60012 !important;
}

.login-btn:hover {
  background: #cc0010;
  transform: translateY(-1px);
}

.login-btn.active {
  background: #b8000e;
  transform: translateY(1px);
}

/* Country Button */
.country-btn {
  padding: 4px;
}

.country-btn img {
  width: 24px;
  height: 18px;
  border-radius: 2px;
}

/* Dropdown Overlay */
.dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* SEARCH DROPDOWN STYLES */
.search-container {
  position: relative;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 600px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 999;
  overflow: hidden;
}

.search-content {
  padding: 20px;
}

.search-input-container {
  position: relative;
  margin-bottom: 20px;
}

.search-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}


.search-input::placeholder {
  color: #999;
}

.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.search-clear:hover {
  background: #f0f0f0;
  color: #666;
}

.search-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.search-section h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.trending-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trending-list li a {
  color: #e60012;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  padding: 4px 0;
}

.trending-list li a:hover {
  color: #cc0010;
  text-decoration: underline;
}

.products-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-item {
  display: flex;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.product-item:hover {
  background-color: #f8f9fa;
}

.product-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.product-image.donkey-kong {
  background: linear-gradient(135deg, #8B4513, #D2691E);
}

.product-image.pokemon {
  background: linear-gradient(135deg, #4169E1, #87CEEB);
}

.product-image.mario-party {
  background: linear-gradient(135deg, #FF6347, #FFD700);
}

.product-image.pokemon-friends {
  background: linear-gradient(135deg, #32CD32, #98FB98);
}

.platform-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  background: #e60012;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  margin: 0;
}

.product-category {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-item .wishlist-btn {
  background: none;
  border: none;
  color: #e60012;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.product-item .wishlist-btn:hover {
  background-color: #f0f0f0;
}

/* LOGIN DROPDOWN STYLES */
.login-container {
  position: relative;
}

.login-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 380px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 999;
  overflow: hidden;
}

.login-content {
  padding: 24px;
}

.login-header {
  text-align: center;
  margin-bottom: 20px;
}

.nintendo-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.icon-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
}

.icon-item.mushroom {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  animation-delay: 0s;
}

.icon-item.star {
  background: linear-gradient(135deg, #ffd93d, #ff9800);
  animation-delay: 0.5s;
}

.icon-item.flower {
  background: linear-gradient(135deg, #6bcf7f, #4caf50);
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.benefits-section {
  margin-bottom: 24px;
}

.benefits-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  text-align: center;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
}

.checkmark {
  color: #4caf50;
  font-weight: bold;
  font-size: 16px;
}

.login-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.login-primary-btn, .signup-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-primary-btn {
  background: #e60012;
  color: white;
}

.login-primary-btn:hover {
  background: #cc0010;
  transform: translateY(-1px);
}

.signup-btn {
  background: white;
  color: #e60012;
  border: 2px solid #e60012;
}

.signup-btn:hover {
  background: #e60012;
  color: white;
}

.additional-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.option-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.option-link:hover {
  background-color: #f8f9fa;
  color: #333;
}

.external-link {
  margin-left: auto;
  font-size: 12px;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-dropdown {
    width: 350px;
    right: -50px;
  }
  
  .search-results {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .login-dropdown {
    width: 320px;
    right: -20px;
  }
  
  .header-actions {
    gap: 8px;
  }
  
  .search-text {
    display: none;
  }
}

.toggle-panel {
  background: #fff;
  border-top: 1px solid #ddd;
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 1000;
}

.icons-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icons-bar .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
