/* ============================================
   JERSEY GIRL GLAM — Design System
   Editorial magazine aesthetic
   Refinery29 meets Who What Wear
   ============================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand palette */
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-muted: rgba(201, 169, 110, 0.15);
  --black: #0f0f0f;
  --charcoal: #1a1a1a;
  --slate: #2a2a2a;
  --blush: #F2D7D9;
  --blush-dark: #D4A0A4;
  --rose: #e8364f;
  --white: #FFFFFF;
  --cream: #FAF8F5;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-400: #999;
  --gray-500: #666;
  --gray-600: #444;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --nav-height: 72px;
  --container-max: 1200px;
  --container-narrow: 800px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style-position: inside;
}

/* === NAVIGATION === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.logo-jersey {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-glam {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--charcoal);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.2s;
}

/* === MAIN CONTENT === */
main {
  min-height: calc(100vh - var(--nav-height) - 200px);
}

/* === HOME HERO === */
.home-hero {
  padding: 0;
}

.hero-editorial {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero-editorial-image {
  width: 100%;
  min-height: 70vh;
  max-height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.hero-editorial-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
}

.hero-editorial-overlay {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}

.hero-category {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 700px;
}

.hero-excerpt {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 1.5rem;
}

.hero-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* === SECTIONS === */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.home-section {
  padding: 5rem 0;
}

.home-section--products {
  background: var(--cream);
}

.home-section--categories {
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
}

.section-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.section-link:hover {
  color: var(--charcoal);
}

/* === POST CARDS === */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.posts-grid--full {
  grid-template-columns: repeat(3, 1fr);
}

.post-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--white);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
  position: relative;
}

.card-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.card-body {
  padding: 1.25rem 0.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.card-excerpt {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.card-author {
  font-weight: 600;
  color: var(--gray-600);
}

/* === PRODUCT CARDS === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.product-image-link {
  display: block;
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--gray-100);
  padding: 1rem;
}

.product-image--placeholder {
  background: var(--gray-100);
  aspect-ratio: 1;
}

.product-info {
  padding: 1.25rem;
}

.product-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.product-cta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}

.product-cta:hover {
  color: var(--charcoal);
}

/* === AFFILIATE NOTICE === */
.affiliate-notice {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 2rem;
  font-style: italic;
}

.post-affiliate-notice {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
}

/* === CATEGORIES STRIP === */
.categories-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.category-chip {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: all 0.2s ease;
}

.category-chip:hover,
.category-chip.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

/* === PAGE HEADER === */
.page-header {
  padding: 4rem 0 2rem;
  text-align: center;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}

/* === POSTS SECTION === */
.posts-section {
  padding: 2rem 0 5rem;
}

/* === INDIVIDUAL POST === */
.post-hero {
  width: 100%;
  height: 50vh;
  max-height: 600px;
  background-size: cover;
  background-position: center;
}

.post-container {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.post-header {
  margin-bottom: 3rem;
  text-align: center;
}

.post-category-link {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--gold-muted);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}

.post-category-link:hover {
  background: var(--gold);
  color: var(--black);
}

.post-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.post-excerpt-large {
  font-size: 1.2rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.post-author {
  font-weight: 600;
  color: var(--gray-600);
}

/* === POST BODY === */
.post-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.post-body h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
}

.post-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 2rem 0 0.75rem;
}

.post-body p {
  margin-bottom: 1.25rem;
}

.post-body a {
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid var(--gold-light);
  transition: border-color 0.2s;
}

.post-body a:hover {
  border-bottom-color: var(--gold);
}

.post-body ul, .post-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  list-style-position: outside;
}

.post-body li {
  margin-bottom: 0.5rem;
}

.post-body img {
  border-radius: 4px;
  margin: 2rem 0;
}

.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--cream);
  font-style: italic;
  color: var(--gray-600);
}

.post-body strong {
  color: var(--charcoal);
}

/* === POST PRODUCTS SECTION === */
.post-products {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--gray-200);
}

.post-products-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2rem;
  text-align: center;
}

/* === POST TAGS === */
.post-tags {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.35rem 1rem;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* === RELATED POSTS === */
.related-posts {
  padding: 5rem 0;
  background: var(--cream);
}

/* === ABOUT PAGE === */
.about-page {
  padding: 5rem 0;
}

.about-container {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.about-subtitle {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.about-lead {
  font-size: 1.3rem;
  font-family: var(--font-serif);
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
}

.about-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
}

.about-text ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-position: outside;
}

.about-text li {
  margin-bottom: 0.5rem;
}

.about-sign {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 2rem;
}

/* === DISCLOSURE PAGE === */
.disclosure-page {
  padding: 5rem 0;
}

.disclosure-container {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

.disclosure-content {
  margin-top: 2.5rem;
}

.disclosure-content h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
}

.disclosure-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.disclosure-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-position: outside;
}

.disclosure-content li {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.disclosure-highlight {
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.7;
}

/* === ERROR PAGES === */
.error-page {
  text-align: center;
  padding: 8rem 2rem;
}

.error-page h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.error-page p {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--black);
}

/* === EMPTY STATE === */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}

.empty-state h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.empty-state p {
  color: var(--gray-500);
}

/* === FOOTER === */
.site-footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-logo .logo-jersey {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo .logo-glam {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-disclosure {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 600px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .posts-grid,
  .posts-grid--full {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-editorial-overlay {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .home-section {
    padding: 3rem 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .post-container {
    padding: 2rem 1.5rem 4rem;
  }

  .post-hero {
    height: 40vh;
  }

  .categories-strip {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }

  .categories-strip::-webkit-scrollbar {
    display: none;
  }

  .category-chip {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
}

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
  background: var(--cream);
}

.breadcrumbs .section-container {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.78rem;
  color: var(--gray-400);
  flex-wrap: wrap;
}

.breadcrumb-link {
  color: var(--gray-500);
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--gray-300);
}

.breadcrumb-current {
  color: var(--gray-400);
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === AUTHOR BYLINE === */
.author-byline-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}

.author-byline-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.author-byline-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
}

.author-byline-date {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* === SHOP THE LOOK (IN-BODY) === */
.stl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.stl-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}

.stl-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.stl-card-body {
  padding: 1.25rem;
}

.stl-card-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.stl-card-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.stl-card-price {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: var(--cream);
  border-radius: 4px;
}

.stl-card-cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.stl-card-cta:hover {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}

/* === PRO TIP === */
.pro-tip {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.pro-tip strong {
  color: var(--charcoal);
  font-weight: 700;
}

.pro-tip a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--gold-light);
  transition: border-color 0.2s;
}

.pro-tip a:hover {
  border-bottom-color: var(--gold);
}

/* === THE EDIT HUB FEATURED HERO === */
.edit-hero {
  padding: 0 2rem;
  max-width: var(--container-max);
  margin: 0 auto 2rem;
}

.edit-hero-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.edit-hero-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.edit-hero-image {
  width: 100%;
  min-height: 400px;
  max-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.edit-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 65%);
}

.edit-hero-overlay {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  width: 100%;
}

.edit-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  max-width: 600px;
}

.edit-hero-excerpt {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 500px;
  margin-bottom: 1rem;
}

/* === ABOUT PAGE PHOTO === */
.about-photo-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: 100px 1fr;
  }

  .product-image {
    aspect-ratio: 1;
    height: 100%;
  }

  .stl-grid {
    grid-template-columns: 1fr;
  }

  .edit-hero {
    padding: 0 1rem;
  }

  .edit-hero-image {
    min-height: 280px;
  }

  .edit-hero-overlay {
    padding: 1.5rem;
  }

  .about-photo {
    width: 120px;
    height: 120px;
  }

  .breadcrumb-current {
    max-width: 180px;
  }
}
