
body {
  margin: 0;
  font-family: Arial, sans-serif;
 
  width: 100%;
}

.header-desktop,
.header-mobile {
  display: none;
  background-color: white;
 padding: 5px;

}

/* Desktop Header */
.header-desktop {
      align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 40px;
}

.header-left, .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-right {
  justify-content: flex-end;
  gap: 20px;
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  height: 70px;
}

.search-container {
   box-sizing: border-box;
    align-items: center;
  display: flex;
  background: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc; /* <-- this line adds the border */
  justify-items: center;
}

.search-container input {
  flex: 1;
  padding: 10px;
  border: none;
  font-size: 16px;
}

.search-button {
  background-color: #ddd;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.icon {
  font-size: 20px;
  cursor: pointer;
}
/* Desktop Menu */
.desktop-menu {
 
  background-color: #fff;
  text-align: center;
  padding: 10px 0;
}

.desktop-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 30px;
}

.desktop-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 6px 12px;
  transition: color 0.3s ease;
}

.desktop-menu li a:hover {
  color: #007BFF;
}

/* Mobile Header */
.header-mobile {
  flex-direction: column;
  padding: 10px;
}

.mobile-top{
   
  box-sizing: border-box; /* include padding in width */
  background-color: white;
  justify-content: space-between;
}
/* Mobile bottom layout */
.mobile-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px;
}

.mobile-left,
.mobile-center,
.mobile-right {
  display: flex;
  align-items: center;
}

/* Left side - Menu icon aligned to the left */
.mobile-left {
  justify-content: flex-start;
  width: 25%;
}

/* Center - Logo centered */
.mobile-center {
  justify-content: center;
  width: 50%;
}

.logo {
  height: 35px;
}

/* Right side - Profile and Cart aligned to the right */
.mobile-right {
  justify-content: flex-end;
  width: 25%;
  gap: 10px;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .desktop-menu {
    display: none;
  }
  
  .desktop {
    display: none;
  }
  .header-mobile {
    display: flex;
  }
}

@media (min-width: 769px) {
  .header-mobile {
    display: none;
  }
  .mobile {
    display: none;
  }
}
/*slide*/
/* text after slide*/
/* Applies to elements with the class 'shadow-text' */
.shadow-text {
  color: #2c3e50; /* Dark blue-gray text color */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Adds depth with shadow */
  text-align: center;
  
}

