/* Meesho Style Dropdown */
.meesho-dropdown {
  position: static;
}

.meesho-dropdown-toggle {
  cursor: pointer;
}

/* Desktop Dropdown Styles */
.meesho-dropdown .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0;
  width: 100%;
  left: 0;
  right: 0;
  transform: translateY(10px);
  margin-top: 0;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 1000;
  max-height: 80vh;
  overflow-y: auto;
  position: absolute;
  top: 100%;
}

.meesho-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  left: 0;
  right: 0;
}

/* Dropdown Content Layout */
.meesho-dropdown-content {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 50px;
  max-width: 1200px;
  margin: 0 auto;
  max-height: 70vh;
  overflow-y: auto;
}

.meesho-dropdown-column {
  flex: 1;
  min-width: 200px;
  padding: 0 15px;
  border-right: 1px solid #eee;
}

.meesho-dropdown-column:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .meesho-dropdown-column {
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  
  .meesho-dropdown-column:last-child {
    border-bottom: none;
  }
}

.meesho-dropdown-column h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  text-transform: uppercase;
}

.meesho-dropdown-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meesho-dropdown-column ul li {
  margin-bottom: 10px;
}

.meesho-dropdown-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 5px 0;
  transition: all 0.3s;
}

.meesho-dropdown-column ul li a:hover {
  color: #f04e23;
  padding-left: 5px;
}

/* Mobile Sidebar Styles */
.mobile-dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
}

.mobile-dropdown-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 1051;
  overflow-y: auto;
  transition: left 0.3s ease-in-out;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-dropdown-sidebar.open {
  left: 0;
}

.mobile-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-dropdown-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.close-mobile-dropdown {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.mobile-dropdown-content {
  padding: 20px;
}

.mobile-dropdown-section {
  margin-bottom: 25px;
}

.mobile-dropdown-section h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.mobile-dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-dropdown-section ul li {
  margin-bottom: 12px;
}

.mobile-dropdown-section ul li a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  display: block;
  padding: 8px 0;
}

.mobile-dropdown-section ul li a:hover {
  color: #f04e23;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .meesho-dropdown .dropdown-menu {
    display: none;
  }
  
  .mobile-dropdown-overlay,
  .mobile-dropdown-sidebar {
    display: block;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .meesho-dropdown-content {
    max-width: 95%;
    padding: 20px 20px;
  }
  
  .meesho-dropdown-column {
    min-width: 180px;
  }
}

@media (min-width: 1200px) {
  .meesho-dropdown-content {
    max-width: 1140px; /* Bootstrap container width */
  }
}

@media (min-width: 992px) {
  .mobile-dropdown-overlay,
  .mobile-dropdown-sidebar {
    display: none !important;
  }
}

/* Animation for mobile sidebar */
@keyframes slideInLeft {
  from {
    left: -300px;
  }
  to {
    left: 0;
  }
}

@keyframes slideOutLeft {
  from {
    left: 0;
  }
  to {
    left: -300px;
  }
}

/* Additional Categories for Full Meesho Experience */
.meesho-dropdown-content .meesho-dropdown-column.wide {
  flex: 2;
}

.meesho-dropdown-content .meesho-dropdown-column.narrow {
  flex: 0.8;
}