 @charset "UTF-8";

/* LOGO STYLES */
.logo {
  margin-left: 3rem;
  display: inline-block;
  vertical-align: middle;
}

.logo img {
  width: 100%; /* Default for responsiveness */
}

.logo picture img {
  width: 50px;
}

/* SHOPPING CART STYLES */
.shopping-cart {
  position: fixed;
  top: 20px;
  right: 20px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: #000;
  color: white;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  vertical-align: middle;
}

.shopping-cart:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .logo img {
    width: 50px; /* Limit the width to 50px for smaller screens */
  }

 

  .logo-mobile-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  .hamburger {
    margin-right: 10px; /* Add spacing from the logo */
  }

  .shopping-cart {
    margin-left: auto;
  }

  .responsive-logo {
    width: 50px; /* Default for smaller devices */
  }
}

@media (min-width: 769px) {
  /* Larger width for desktop */
  .logo picture img {
    width: 800px;
  }
}

 
 
	
 