/*
Theme Name: TextileMart
Theme URI: https://textilemart.in
Author: TextileMart Team
Author URI: https://textilemart.in
Description: A modern B2B textile marketplace theme in blue and orange.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: textilemart
Tags: b2b, marketplace, textile, responsive
*/

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

/* Center-align the navigation menu */
header {
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.main-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.main-menu a:hover {
  background-color: #F97316;
}

/* Dropdown menu styling */
.main-menu .sub-menu {
  display: none;
  position: absolute;
  background-color: #1E3A8A;
  top: 100%;
  left: 0;
  min-width: 160px;
  z-index: 1000;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.main-menu li:hover > .sub-menu {
  display: block;
}

.main-menu .sub-menu li {
  display: block;
  margin: 0;
}

.main-menu .sub-menu a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: white;
  white-space: nowrap;
}

.main-menu .sub-menu a:hover {
  background-color: #F97316;
}
