.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .logo-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
  }
  
  .brand-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.2rem;
  }
  
  .search-bar {
    display: flex;
    align-items: center;
    background: var(--accent);
    border-radius: 8px;
    padding: 0.5rem;
    width: 40%;
  }
  
  .search-bar input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    padding: 0.5rem;
  }
  
  .search-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
  }
  
  .cart {
    position: relative;
  }
  
  .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: var(--text-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
  }
  .footer {
    background: #000000;
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
  
  .footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .footer h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .footer ul {
    list-style: none;
  }
  
  .footer ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: var(--secondary);
  }
  