
/** main-header **/

.main-header{
  position: relative;
  background: #fff;
}

/* Original Header Design Styles - Exact Match */

/* Top Dark Header Bar */
.header-top-dark {
  position: relative;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #3a2a1a 100%) !important;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.03) 2px,
      rgba(255,255,255,0.03) 4px
    );
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-dark-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #444;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

.nav-btn:hover,
.nav-btn.active {
  background: #444;
  color: var(--theme-color);
  text-decoration: underline;
}

.top-search-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-icon {
  color: #ff4444;
  font-size: 18px;
}

.top-search-form {
  display: flex;
  align-items: center;
  background: #333;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #444;
}

.top-search-form input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  width: 200px;
}

.top-search-form input::placeholder {
  color: #ccc;
}

.search-btn {
  background: #333;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #444;
}

/* Second Light Header Bar */
.header-second-light {
  position: relative;
  background: #f5f5f5;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.second-light-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Classic segmented actions for shop/cart */
.classic-actions {
  background: linear-gradient(#f0f0f0, #d9d9d9);
  border: 1px solid #bfbfbf;
  border-radius: 6px;
  padding: 2px;
}

.classic-actions .action-btn,
.classic-actions .company-link,
.classic-actions .logout-btn {
  background: linear-gradient(#eeeeee, #d7d7d7);
  border: 1px solid #bdbdbd;
  color: #333;
  border-radius: 4px;
  padding: 8px 12px;
}

.classic-actions .company-link {
  text-decoration: underline;
  color: #0d6efd;
}

.action-btn {
  display: inline-block;
  padding: 8px 12px;
  background: #e0e0e0;
  color: #666;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid #ccc;
}

.action-btn:hover {
  background: #d0d0d0;
}

/* User Profile Picture */
.user-profile-btn {
  padding: 0 !important;
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-profile-btn:hover .user-profile-img {
  opacity: 0.8;
}

.company-link {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.company-link:hover {
  text-decoration: underline;
}

.logout-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #e0e0e0;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #ccc;
}

.logout-btn:hover {
  background: #d0d0d0;
  text-decoration: underline;
}

/* Main Search Area */
.header-main-search {
  position: relative;
  background: #fff;
  padding: 20px 0;
}

.main-search-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Classic breadcrumb bar */


.classic-breadcrumb .breadcrumb-inner {
  display: flex;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid #bfbfbf;
  border-radius: 6px;
  background: linear-gradient(#e0e0e0, #d6d6d6);
}

.classic-breadcrumb .crumb-title {
  font-weight: 700;
  color: #555;
}

.classic-breadcrumb .crumb-current {
  color: #333;
}

/* Logo Section in Second Bar */
.logo-section {
  display: flex;
  align-items: center;
}

.circular-logo {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner {
  position: relative;
  width: 80px;
  height: 80px;
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.logo-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
}

.dot {
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
}

.logo-circumference {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circumference-text {
  font-size: 8px;
  color: #666;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  padding: 0 10px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* Main Search Form */
.main-search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  width: 100%;
}

.main-search-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #000;
  padding: 12px 15px;
  font-size: 16px;
}

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

.main-search-btn {
  background: transparent;
  border: none;
  color: #000;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-search-btn:hover {
  color: #666;
}

/* Bottom Navigation Bar */
.header-bottom-nav {
  position: relative;
  background: #fff;
  padding: 15px 0;
  border-top: 1px solid #e9ecef;
}

.bottom-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dashboard-section {
  display: flex;
  align-items: center;
}

.dashboard-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #007bff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: Arial, sans-serif;
}

.dashboard-link:hover {
  text-decoration: underline;
}

.dashboard-link i {
  font-size: 14px;
}

/* Main Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: Arial, sans-serif;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-item.active .nav-link {
  color: #dc3545;
  text-decoration: underline;
  text-decoration-color: #dc3545;
  text-underline-offset: 5px;
}

.nav-link:hover {
  color: #dc3545;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .top-dark-inner {
    flex-direction: column;
    gap: 15px;
  }

  .nav-buttons {
    justify-content: center;
  }

  .top-search-area {
    justify-content: center;
  }

  .top-search-form input {
    width: 150px;
  }

  .second-light-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .user-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .bottom-nav-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .nav-list {
    gap: 20px;
  }

  .circular-logo {
    width: 100px;
    height: 100px;
  }

  .logo-inner {
    width: 70px;
    height: 70px;
  }

  .logo-text {
    font-size: 16px;
  }

  .circumference-text {
    font-size: 7px;
  }

  .main-search-form {
    max-width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .header-top-dark {
    padding: 10px 0;
  }

  .header-second-light {
    padding: 10px 0;
  }

  .header-main-search {
    padding: 15px 0;
  }

  .nav-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .top-search-form input {
    width: 120px;
    font-size: 12px;
  }

  .circular-logo {
    width: 80px;
    height: 80px;
  }

  .logo-inner {
    width: 60px;
    height: 60px;
  }

  .logo-text {
    font-size: 14px;
  }

  .circumference-text {
    font-size: 6px;
  }

  .user-actions {
    gap: 10px;
  }

  .action-btn,
  .logout-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .header-bottom-nav {
    padding: 10px 0;
  }

  .nav-list {
    gap: 15px;
  }

  .nav-link {
    font-size: 14px;
  }
}































