:root {
    --color1: #1b1b1b;
    --color2: #fff;
    --color3: #FFB6C1;
  
    --ff1: "Montserrat", sans-serif;
}
  
*, *::before, *::after {
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}
  
body {
    min-height: 100vh;
    font-family: var(--ff1);
    font-weight: 400;
    line-height: 1.6;
    background-color: #F7EEED;
}
   
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}
  
h1 {
    font-family: var(--ff1); 
    color: var(--color3);
    font-weight: 600;
    line-height: 1;
}

.discount-banner {
    background-color: #ff6f61; /* Bright attention-grabbing color */
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
.discount-banner p {
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .discount-banner {
      font-size: 0.9rem;
      padding: 8px 10px;
    }
  } 

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5E9E8;
    color: #1b1b1b;
    padding: 10px 40px;
    position: fixed;
    width: 100%;
    top: 38px;
    z-index: 1000;
    height: 100px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

  .navbar img {
    width: 120px;
    height: 100px;
    margin-top: 10px;
  }

  .cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-icon #cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ff6f61;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
  
  @media screen and (max-width: 600px) {
    .navbar {
        padding: 10px 15px;
    }

    .brand-name {
      font-size: 16px;
    }
  
    .cart-icon span {
      font-size: 20px;
    }
  }
