@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');


body {
    font-family: "Nunito Sans", sans-serif;
}

.title, .subtitle {
    font-family: "Bebas Neue", sans-serif;
}

.navbar, .footer {
    background-color: #3f0c6d;
}

.footer a:hover {
    text-decoration: underline; /* Adds underline on hover */
  }

.navbar-burger span {
    background-color: #fff !important;
    /* Text color: #0a1f15 */
}

.icon-wrapper img {
    mix-blend-mode: additive; /* Blends the color with the image */
}

.breadcrumb ul :first-child a {
    margin-top: 3px;
}

/* Cart Badge Overlap Effect */
.cart-badge-container {
    position: relative;
}

.cart-badge {
    position: absolute !important;
    top: -5px;
    right: -5px;
    padding: 0.25em 0.45em;
    min-width: 1.2em;
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border-radius: 50%;
}

/* Hides any <br> that immediately follows another <br> */
#description br + br {
    display: none;
}

#description > li br {
    display: inherit !important;
}