/* header.css */

/* Top bar section */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}

/* Alignment for left, center, right sections */
.top-bar .left,
.top-bar .center,
.top-bar .right {
  display: flex;
  align-items: center;
}

/* Left section - Free Delivery and Returns */
.top-bar .left a {
  margin-right: 10px;
}

.top-bar .Delivery {
  text-decoration: none;
  color: #e90808;
  font-size: 14px;
}

.top-bar .Return {
  text-decoration: none;
  color: #fc0606;
  font-size: 14px;
}

/* Center section - Social Icons */
.top-bar .center a {
  margin: 0 5px;
}

.top-bar .social-icon img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.top-bar .social-icon {
  text-decoration: none;
}

/* Right section - Login link */
.top-bar .right a {
  text-decoration: none;
  color: #007BFF;
  font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }

  .top-bar .left,
  .top-bar .center,
  .top-bar .right {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .top-bar {
    padding: 5px;
  }

  .top-bar .left a,
  .top-bar .right a {
    font-size: 12px;
  }

  .top-bar .social-icon img {
    width: 16px;
    height: 16px;
    margin-left: 8px;
  }
}