/********************************************
 * INFLUENCER HEADER – LEFT LOGO, CENTER PILLS
 ********************************************/

body.single-ggf_influencer .ggf-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #000;
  padding: 12px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

body.single-ggf_influencer .ggf-header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Left: logo pinned hard left */
body.single-ggf_influencer .ggf-header-logo {
  flex: 0 0 auto;
}

/* Center: nav takes middle space, pills centered inside it */
body.single-ggf_influencer .ggf-header-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

body.single-ggf_influencer .ggf-nav-list {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

/* Right: empty spacer keeps nav perfectly centered */
body.single-ggf_influencer .ggf-header-account {
  flex: 0 0 72px; /* phantom account column */
}

/* Logo treatment: white text, subtle pink glow */
body.single-ggf_influencer .ggf-logo-text {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 46, 134, 0.65);
}

/* Nav pills on black header */
body.single-ggf_influencer .ggf-nav-link {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #f4f4f5;
  background: rgba(24,24,27,0.8);
  border: 1px solid rgba(148,163,184,0.4);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

body.single-ggf_influencer .ggf-nav-link:hover {
  background: #f4f4f5;
  color: #111827;
  border-color: transparent;
}

/* Slightly hotter pill for X-Rated */
body.single-ggf_influencer .ggf-nav-link[href*="x-rated"] {
  background: #e50914;
  border-color: transparent;
}

body.single-ggf_influencer .ggf-nav-link[href*="x-rated"]:hover {
  background: #b20710;
  color: #fff;
}

/* Make sure the default WP header never conflicts here */
body.single-ggf_influencer .site-header {
  display: none !important;
}

/* And ensure logo isn’t absolutely positioned from anywhere else */
body.single-ggf_influencer .ggf-logo,
body.single-ggf_influencer .ggf-header-logo .ggf-logo-text {
  position: static !important;
  transform: none !important;
}


/********************************************
 * INFLUENCER – SET RATING PILLS
 ********************************************/

/* Base pill style */
body.single-ggf_influencer .ggf-set-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(15,23,42,0.06);
}

/* PG-13 – cool blue */
body.single-ggf_influencer .ggf-set-pill--inline[data-rating="pg13"] {
  background: #e5edff;
  color: #1e3a8a;
}

/* X-Rated – warm red, better contrast */
body.single-ggf_influencer .ggf-set-pill--inline[data-rating="x"] {
  background: #fee2e2;
  color: #b91c1c;
}


/********************************************
 * HOMEPAGE – REAL LIFE INFLUENCER SIDEBAR
 * (random spotlight + Kylie callout)
 ********************************************/

/* Adjust `.pg13-fullscreen-shell` if your outer shell class is different */
.pg13-fullscreen-shell .ggf-home-influencer-spotlight {
  position: fixed;
  left: 20px;
  top: 90px; /* tuned to sit under the site logo */
  width: 190px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Helvetica Neue", Arial, sans-serif;
}

/* Label above thumb */
.pg13-fullscreen-shell .ggf-home-influencer-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9ca3af;
}

/* Card + thumb */
.pg13-fullscreen-shell .ggf-home-influencer-card {
  text-decoration: none;
}

.pg13-fullscreen-shell .ggf-home-influencer-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.pg13-fullscreen-shell .ggf-home-influencer-thumb-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Name overlay inside thumb */
.pg13-fullscreen-shell .ggf-home-influencer-name-overlay {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  color: #f9fafb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Insta handle under thumb */
.pg13-fullscreen-shell .ggf-home-influencer-insta {
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

/* Kylie copy */
.pg13-fullscreen-shell .ggf-home-kylie-callout {
  margin-top: 12px;
}

.pg13-fullscreen-shell .ggf-home-kylie-title {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  color: #ff2e86;
}

.pg13-fullscreen-shell .ggf-home-kylie-subtitle {
  margin-top: 2px;
  font-size: 12px;
  color: #111827;
}

/********************************************
 * HOTFIX: Influencer header alignment
 * Force logo left, pills centered, spacer right
 ********************************************/

body.single-ggf_influencer .ggf-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #000;
  padding: 12px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

/* Treat inner as a positioning frame */
body.single-ggf_influencer .ggf-header-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  height: 40px;
}

/* Reset any flex/grid that might be coming from global CSS */
body.single-ggf_influencer .ggf-header-logo,
body.single-ggf_influencer .ggf-header-nav,
body.single-ggf_influencer .ggf-header-account {
  position: static;
  display: block;
  margin: 0;
}

/* Logo hard left */
body.single-ggf_influencer .ggf-header-logo .ggf-logo-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Pills perfectly centered */
body.single-ggf_influencer .ggf-header-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

body.single-ggf_influencer .ggf-nav-list {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

/* Phantom right column to balance layout */
body.single-ggf_influencer .ggf-header-account {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  text-align: right;
}

/* Hide the global WP header so we don’t get duplicates */
body.single-ggf_influencer .site-header {
  display: none !important;
}
