@charset "UTF-8";
/* CSS Document */
/* header.css */

/* Header styles */
.header {
    background-color: black;
    padding: 1rem;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    height: auto;
}

 
.header-content {
  display: flex;
  justify-content: flex-start; /* Aligns children to the start (left) */
  align-items: center;         /* Optional: vertically centers children */
}

/* Additional styling for .desktop-image if needed */
.desktop-image {
  /* No additional positioning needed if justify-content is set appropriately on the parent */
}


/* Cart button styles remain unchanged */
.cart-button {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* For fixed positioning of the cart button, keep these styles */
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100;
}

.cart-count {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background-color: #f97330;
    color: white;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-count.visible {
    opacity: 1;
}