
    /* Floating profile panel styling */
    .profile-dropdown {
      position: absolute;
      top: 60px; /* distance from top panel */
      right: 20px; /* distance from right edge */
      width: 220px;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      display: none; /* hidden by default */
      z-index: 1050;
    }
    .profile-dropdown.show {
      display: block;
      animation: fadeIn 0.2s ease-in-out;
    }
    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(-10px);}
      to {opacity: 1; transform: translateY(0);}
    }
    .profile-dropdown a {
      color: #333;
      text-decoration: none;
    }
    .profile-dropdown a:hover {
      background-color: #f8f9fa;
    }
  .remove-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.remove-btn:hover {
  background-color: #c82333 !important; /* Darker red */
}

/* Add to Cart button styling */
.product-item .btn-primary {
  background-color: orange !important;
  border-color: orange !important;
  color: white !important;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.product-item .btn-primary:hover {
  background-color: blue !important;
  border-color: blue !important;
}

.product-item .btn-primary:active {
  background-color: blue !important;
  border-color: blue !important;
}
