/* ============================================================
   LMS Celebrity Autographs – HEADER STYLES (v1.3.4c)
   Unified across all pages
   ============================================================ */
 
:root {
  --brand-main: #2c146c;
  --brand-accent: #4932a3;
  --brand-gold: #d6b24a;
}

/* ============================================
   REFINED HEADER STRUCTURE
   ============================================ */

header.site-header {
  width: 100%;
  position: relative;
  z-index: 1000;
  font-family: "Poppins", sans-serif;
}

/* Thin purple bars */
.header-purple-top,
.header-purple-bottom {
  height: 20px;
  background: var(--brand-main);
  width: 100%;
}

/* White central bar */
.header-white {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* Gold separator */
.header-gold-line {
  height: 3px;
  background: var(--brand-gold);
  width: 100%;
}


/* White logo bar */
.header-top {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

/* Keep logo sizing consistent */
.header-top .logo-title img {
  height: 60px;
  width: auto;
}

/* Gold separator */


/* Purple navigation bar */
.header-nav {
  background: var(--brand-main);
  padding: 12px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}


/* === LEFT: LOGO BLOCK === */
.header-white .logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top .logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
   height: 60px;
  width: auto;
}


header.site-header .logo-title h1 {
  margin: 0;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
}

/* === RIGHT: NAVIGATION BUTTONS === */
.header-nav nav.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header-white nav.main-nav button {
  background: var(--brand-gold);
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  line-height: 1.3em;
  cursor: pointer;
  transition: background 0.25s, transform 0.05s;
}

header.site-header nav.main-nav button:hover {
  background: #f1d77b;
}
header.site-header nav.main-nav button:active {
  transform: translateY(1px);
}

/* === CART BADGE STYLING (BOLDER VERSION) === */
#cartCount {
  background: #B22222;               /* deep red for attention */
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
  font-size: 0.9em;
  line-height: 1;
  display: inline-block;
  min-width: 22px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, background 0.25s ease;
}
header.site-header nav.main-nav button:hover #cartCount {
  background: #ff4444;
  transform: scale(1.1);
}




/* === RESPONSIVE === */
@media (max-width: 600px) {
  header.site-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
.header-white .logo-title img {
  height: 60px;
  width: auto;
}

.header-white nav.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}
.pulse { animation: pulseBadge 0.3s ease; }


/* ============================
   SECOND-TIER AUTH STRIP (Below Header)
   ============================ */

/* Full-width purple band */
.auth-strip {
  width: 100%;
  background: var(--brand-main);
  border-bottom: 3px solid var(--brand-gold);
  padding: 8px 0 12px 0;
}

/* Inner container aligned to header layout */
.auth-strip-inner {
  width: 100%;
  max-width: 1400px;       /* matches typical site width */
  margin: 0 auto;
  padding: 0 20px;         /* aligns with header's left/right padding */

  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}

/* Auth links styling */
.auth-strip-link {
  color: var(--brand-gold);
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.25s;
}

.auth-strip-link:hover {
  color: #f1d77b;
  text-decoration: underline;
}

.auth-strip-link:focus {
  outline: 3px solid var(--brand-gold);
  border-radius: 3px;
}

