/* Cart Icon */
.heroic {
  background: #2a2a2a;
  color: white;
  padding: 3rem 1rem;
}

.heroic h1 {
  font-size: 2.5rem;
}

.heroic .highlight {
  color: orange;
}

.cart-link {
  position: relative;
  display: inline-flex;      /* always visible */
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  text-decoration: none;
}

.cart-link i {
  font-size: 1.6rem;
  color: #fff;               /* stays visible */
  transition: all 0.3s ease;
}

/* Hover effect */
.cart-link:hover i {
  color: #ff6600;            /* turns orange */
  transform: scale(1.2);     /* grows */
}

/* Cart badge */
.cart-link::after {
  content: "2";              /* example cart count */
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ff6600;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Sidebar Styles for Mobile */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* Mobile - Sidebar */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 4rem 2rem;
        gap: 1.5rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.show {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 2rem;
        z-index: 1000;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }
}
