.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  background-color: black;
  color: white;
  box-sizing: border-box;
  padding: 0 50px;
  z-index: 999;
  position: sticky;
}

.logo-container h1 {
  color: white;
  font-family: 'Times New Roman', Times, serif;
}

/* =========================================
   MIDDLE NAVIGATION
   ========================================= */
.center-nav {
  padding: 10px;
  background-color: black;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 30px; /* Space between links */
}

.menu {
  margin: 0;
  letter-spacing: 2px;
  font-family: arial;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s linear;
  color: white;
  text-decoration: none;
}

.menu::after {
  content: '';
  background-color: gray;
  margin-top: 2px;
  height: 3px;
  width: 0px;
  display: block;
  border-radius: 10px;
  transition: width .2s linear;
}

.menu:hover::after {
  width: 100%; 
}

.menu:hover {
  color: gray;
}

/* Hide Nav Cart Link on Desktop (redundant) */
.nav-cart-link {
  display: none;
}

/* =========================================
   RIGHT SECTION
   ========================================= */
.header-right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Search Bar Styles */
.search-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 5px 15px;
  border: 1px solid #ccc;
  position: relative;
}

.search-container input {
  border: none;
  outline: none;
  padding: 5px;
  width: 150px;
  font-family: inherit;
}

.search-container button {
  background: none;
  border: none;
  cursor: pointer;
  color: gray;
}

/* Search Dropdown Styles */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: none;
  z-index: 1001;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
}

.suggestion-item:hover {
  background-color: #f9f9f9;
}

.suggestion-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.suggestion-info h4 {
  font-size: 13px;
  margin: 0;
  color: #333;
  font-family: arial, sans-serif;
}

.suggestion-info p {
  font-size: 11px;
  margin: 2px 0 0 0;
  color: #777;
}

/* --- CART BUTTON STYLES --- */
.cart-button {
  font-size: 30px;
  color: white !important; /* Force white color */
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-cart {
  color: white;
  font-size: 25px;
  transition: color 0.2s;
}

.header-cart:hover {
  color: gray;
}

/* Cart Badge (Counter) */
.cart-button span {
  font-size: 10px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -8px;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

/* Mobile & Close Triggers (Hidden on Desktop) */
#close {
  display: none; 
}

.mobile {
  display: none; 
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 50px;
  box-shadow: 10px 10px 50px rgb(37, 37, 37);
  font-family: arial;
  background-color: black;
  color: white;
  bottom: 0;
}

.footer-left-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  margin-left: 20px;
}

.footer-left-section h1 {
  font-size: 75px;
  margin-top: 90px;
  font-family: 'Times New Roman', Times, serif;
}

.footer-left-section p {
  width: 250px;
  color: gray;
}

.footer-right-section h2 {
  font-size: 42px;
  letter-spacing: 2px;
}

.footer-right-section {
  margin-left: 60px;
}

.footer-right-section p {
  font-size: 20px;
  margin-left: 25px;
  cursor: pointer;
}

.footer-right-section i {
  margin-left: 10px;
  font-size: 35px;
  cursor: pointer;
  transition: color .15s linear;
}

.footer-right-section i:hover {
  color: gray;
}

.footer-right-section .social-icon {
  margin: 40px 30px;
}

a {
  color: black;
  text-decoration: none;
}

i {
  border: none;
}