@media (min-width: 550px) {
  
}

@media (min-width: 1100px) {
  
}


body {
  font-family: 'Roboto', sans-serif;
  
  margin: 0;
  background-color: black;
  color: #f7f7f7;
  text-align: center;
}


.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #2A1BA8;
}

.logo img {
  height: 100px; 
}

.ent {
  color: white;
}

.search-bar {
  display: flex;
  align-items: center;
  
  background-color: white;
  border-radius: 50px;
  padding: 5px 15px;
}

.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  background-color: transparent;
  font-size: 1em;
}

.search-bar svg {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.user-actions { 
  color: #2A1BA8;
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-actions a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  height: 20px;
}

.user-actions svg {
  height: 20px;
}

.header-bottom {
  background-color: black;
  padding: 10px 20px; 
  display: flex;
  justify-content: space-between; 
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 400;
}


.empty-cart-container {
  padding: 50px 20px; 
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.empty-cart-content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.empty-cart-title {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #f7f7f7;
}

.empty-cart-subtitle {
  font-size: 1em;
  font-weight: 400;
  margin: 0 0 25px 0;
  color: #f7f7f7;
}

.explore-button {
  text-decoration: none;
  padding: 15px 30px;
  border: 1px solid #2A1BA8; 
  color: #2A1BA8; 
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.explore-button:hover {
  background-color: #2A1BA8;
  color: #fff;
}
.footer {
  background-color: #000;
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin: 20px;
  text-align: left;
}

.footer-section h4 {
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.footer-section p, .footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section a {
  color: white;
  text-decoration: none;
  line-height: 1.8;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}