body {
  font-family: sans-serif; 
  text-align: center; 
  margin: 0;
  background-color: #f5f5f5;
}

/* 🔥 Modern Gradient Header (Category Page Style) */
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: linear-gradient(135deg, #ff6a00, #ff3d00);
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

/* 🔙 Back Button (Circle) */
.bar{
  position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      cursor: pointer;
      transition: 0.2s ease;
}
 .bar:hover {
      transform: translateY(-50%) scale(1.05);
    }

    .bar img {
      width: 22px;
      height: 22px;
    }

/* 🔹 Centered Header Title */
p {
  margin: 0;
  color: white;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  z-index: 9999;
}

/* Login & Signup buttons (side style but under header) */
#authButtons {
  margin-top: 70px; /* My Account bar ke neeche */
  display: flex;
  justify-content: center;
  gap: 10px;
}
.btn1 button, .btn2 button {
  border: none;
  background: #ff6c00;
  padding: 14px 25px;
  color: white;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
  transition: background 0.2s ease-in-out;
}
.btn1 button {
  border-radius: 30px 5px 5px 30px; /* left rounded */
}
.btn2 button {
  border-radius: 5px 30px 30px 5px; /* right rounded */
}
.btn1 button:hover, .btn2 button:hover {
  background: #e65c00;
}

/* Welcome text */
#welcomeText {
  margin-top: 90px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* Logout button */
.btn {
  margin-top: 15px;
}
.btn button {
  border: none;
  background: #ff6c00;
  border-radius: 20pc;
  padding: 10px 18px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}
.btn button:hover {
  background: #e65c00;
}

/* Order and Links Section */
.od {
  margin: 12px auto;
  background: white;
  width: 90%;
  max-width: 400px;
  border: 1px solid #ddd;
  text-align: left;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}
.od a {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #ef6c00;
  text-decoration: none;
}
.od:hover {
  background: #fff3e6;
}
.logo{
  margin-top: 3px;
}