
/* ------------------------------------------Header----------------------------------------  */

/* ------------------------------------------Header CSS with Dropdown Styles----------------------------------------  */

.unique-header {
  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 0px;
 
}
#page{
  overflow: visible;
}

.unique-container {
  max-width: 1600px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.unique-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.unique-logo-icon {
  color: #2d6cdf;
  font-weight: bold;
  margin-right: 4px;
}
.unique-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Search Box */
.header-search {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
  background: #f8f8f8;
}

.header-search input {
  border: none;
  outline: none;
  padding: 8px 15px;
  width: 200px;
  background: transparent;
  font-size: 14px;
  box-shadow: none;
}
.header-search input:focus {
  background: transparent;
}

.header-search button {
  border: none;
  background: transparent;
  padding: 8px 12px;
  cursor: pointer;
}

.header-search button i {
  font-size: 14px;
  color: #333;
}

/* Social Icons */
.header-social {
  display: flex;
  gap: 15px;
}

.header-social a {
  font-size: 18px;
  color: #333;
  transition: 0.3s ease;
}

.header-social a:hover {
  color: #e11d48; /* change to your theme color */
}

/* Desktop Navigation with Dropdown */
.unique-nav {
  display: flex;
  gap: 28px;
}

.unique-menu-list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.unique-menu-item {
  position: relative;
}

.unique-menu-item a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.unique-menu-item a:hover {
  color: #2d6cdf;
}

/* Dropdown arrow */
.unique-dropdown-arrow {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.unique-menu-item:hover > .unique-dropdown-arrow {
  transform: rotate(180deg);
}

/* Sub-menu styles */
.unique-sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

.unique-menu-item:hover > .unique-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.unique-sub-menu .unique-sub-menu {
  top: 0;
  left: 100%;
  margin-top: -10px;
}

.unique-sub-menu .unique-menu-item {
  padding: 0;
}

.unique-sub-menu .unique-menu-item a {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.unique-sub-menu .unique-menu-item a:hover {
  background: #f5f5f5;
  color: #2d6cdf;
}

/* Right Section (desktop) */
.unique-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.unique-icon {
  font-size: 16px;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}

.unique-icon:hover {
  color: #2d6cdf;
}

.unique-signin {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.unique-cart-btn {
  color: #fff;
  border: none;
  padding: 0px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  white-space: nowrap;
}

.unique-cart-btn:hover {
  scale: 1.1;
}

/* Menu toggle (mobile) */
.unique-menu-toggle {
  display: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 101;
  transition: color 0.2s;
}
.unique-menu-toggle:hover {
  color: #2d6cdf;
}
