.search-bar {
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-family: Georgia, serif;
    background: #1a1a1a;
    color: white;
    width: 180px;
  }
  
  .search-bar::placeholder {
    color: #aaa;
  }
  .search-bar:focus {
    box-shadow: 0 0 10px rgba(244,197,66,0.6);
  }
  .perfume-card {
    width: 200px;
  }
  .cart-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 200;
  }
  #cartCount {
    background: #f4c542;
    color: #111;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 1rem;
    vertical-align: top;
    margin-left: 5px;
  }
  
  .fav.animated {
    animation: heartPop 0.5s forwards;
  }
  
  @keyframes heartPop {
    0% {transform: scale(1); color: #fff;}
    50% {transform: scale(1.5); color: #f4c542;}
    100% {transform: scale(1); color: #f4c542;}
  }
  
  .flying-img {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    z-index: 300;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.65, -0.55, 0.35, 1.55), opacity 0.8s;
  }
  