* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sub-header {
  font-family: "Montserrat", sans-serif;
  background-color: #2d3748e6;
  color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info {
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-info li {
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.contact-info li:hover {
  color: #5da26f;
}

.contact-info i {
  font-size: 1rem;
  color: #5da26f;
}

.social-links a {
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #5da26f;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sub-header {
    padding: 1.5rem 0;
  }

  .contact-info {
    font-size: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contact-info li {
    margin: 0;
  }

  .social-links {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .social-links a {
    font-size: 1.1rem;
    margin-right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sub-header {
    padding: 1rem 0;
  }

  .contact-info {
    font-size: 0.8rem;
  }

  .social-links a {
    font-size: 1rem;
    margin-right: 1rem;
  }
}

.header-navbar {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0c7d69 !important;
}

.header-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #4a5568;
  transition: color 0.3s ease;
}

.header-nav-link:hover,
.header-nav-link.active {
  color: #5da26f !important;
}

.header-icons {
  gap: 1rem;
}

.header-icon {
  color: #2d3748;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.header-icon:hover {
  color: #5da26f;
}

.header-cart-badge {
  background-color: #5da26f !important;
  color: white !important;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.header-search-mobile .input-group {
  max-width: 300px;
  margin: 0 auto;
}

.header-search-input {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px 0 0 8px;
  transition: all 0.3s ease;
}

.header-search-input:focus {
  outline: none;
  border-color: #5da26f;
  box-shadow: 0 0 0 3px rgba(93, 162, 111, 0.2);
}

.header-search-input::placeholder {
  color: #a0aec0;
  font-size: 0.9rem;
}

.input-group-text {
  background-color: #5da26f;
  color: white;
  border: 1px solid #5da26f;
  border-radius: 0 8px 8px 0;
}

.header-search-icon {
  color: #2d3748;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.header-search-icon:hover {
  color: #5da26f;
}

.header-search-modal {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(93, 162, 111, 0.15);
}

.header-search-modal .modal-header {
  border-bottom: none;
  padding: 1.5rem;
}

.header-search-modal .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0c7d69;
}

.header-search-modal .modal-body {
  padding: 1.5rem;
}

.header-search-btn {
  background-color: #5da26f;
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.header-search-btn:hover {
  background-color: #4a8a5a;
}

@media (max-width: 768px) {
  .header-brand {
    font-size: 1.5rem;
  }

  .header-nav-link {
    font-size: 0.9rem;
  }

  .header-icons {
    gap: 0.5rem;
  }

  .header-search-mobile .input-group {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .header-brand {
    font-size: 1.3rem;
  }

  .header-nav-link {
    font-size: 0.85rem;
  }

  .header-search-mobile .input-group {
    max-width: 200px;
  }

  .header-search-input {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }

  .header-search-btn,
  .input-group-text {
    padding: 0.6rem;
  }
}
