/* Make Bootstrap toggler match comic theme */
.navbar-toggler {
  border: 1px solid #000;
  border-radius: 12px;
  width: 50px;
  height: 50px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* ===== COMIC NAVBAR ===== */
.comic-navbar {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

/* NAVBAR CONTAINER (NOT FULL WIDTH) */
.comic-nav-container {
  width: 90%;
  max-width: 1400px;
  background-image: url("/images/nav-bg.png");
  background-position: center;
    background-size: cover;
  border: 4px solid #000;
  border-radius: 20px;
  padding: 15px 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 6px 6px 0 #000;
}

/* LEFT */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 45px;
}

.site-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

/* CENTER */
/* NAV CENTER */
.nav-center {
  display: flex;
  gap: 25px;
  padding: 10px 55px;
  border: 3px solid #000;
  border-radius: 15px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* GRAFFITI SPLASH */
.nav-center::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: #8840A5;
  opacity: 0.12;
  border-radius: 50% 40% 60% 45%;
  transform: rotate(20deg);
}

/* SPRAY DOTS */
.nav-center::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 15px;
  width: 6px;
  height: 6px;
  background: #8840A5;
  border-radius: 50%;
  opacity: 0.4;
  box-shadow:
    12px -8px 0 #8840A5,
    25px 4px 0 #8840A5,
    40px -6px 0 #8840A5;
}

/* LINKS */
.nav-center a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: transform 0.2s;
}

/* HOVER LINKS */
.nav-center a:hover {
  transform: scale(1.1) rotate(-2deg);
}

/* HOVER LIFT NAV */
.nav-center:hover {
  transform: translateY(-4px) rotate(-0.3deg);
}


/* RIGHT */
.nav-right {
  display: flex;
  align-items: center;
}

/* BUY BUTTON */
.buy-btn {
  background: #ff3d00;
  color: #fff;
  padding: 12px 22px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.2s;
}

.buy-btn:hover {
  box-shadow: 2px 2px 0 #000;
  transform: translate(2px, 2px);
}
