/* ============================================
   Glow & Tale — Beauty Blog Stylesheet
   Dark Theme · Full-Width · Inter Typeface
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-elevated: #1c1c1c;
  --bg-input: #1a1a1a;
  --text-primary: #f0ece6;
  --text-secondary: #8a8580;
  --text-muted: #5a5550;
  --accent-gold: #c9a96e;
  --accent-rose: #b76e79;
  --accent-gold-light: #e2cb94;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1400px;
  --section-gap: 120px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

::selection {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 48px;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 560px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(24px, 4vw, 80px);
  transition: background var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.nav-logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-search {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}

.nav-search:hover { color: var(--text-primary); }

/* Mobile menu toggle */
.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: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.7) 40%,
    rgba(10, 10, 10, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-content .section-label {
  margin-bottom: 24px;
}

.hero-content h1 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stats .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Featured Section --- */
.featured {
  padding: var(--section-gap) 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.featured-main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  display: block;
}

.featured-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-main:hover img {
  transform: scale(1.03);
}

.featured-main .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-main .card-overlay .category-tag {
  margin-bottom: 12px;
}

.featured-main .card-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.featured-main .card-overlay p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 400px;
}

.featured-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.featured-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  flex: 1;
  aspect-ratio: 16/10;
  background: var(--bg-card);
  display: block;
}

.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover img {
  transform: scale(1.03);
}

.featured-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, transparent 50%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-card .card-overlay h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.featured-card .card-overlay p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* --- Category Tag --- */
.category-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  width: fit-content;
}

.category-tag.skincare { background: rgba(106, 155, 204, 0.15); color: #6a9bcc; }
.category-tag.makeup { background: rgba(183, 110, 121, 0.15); color: #b76e79; }
.category-tag.fragrance { background: rgba(201, 169, 110, 0.15); color: #c9a96e; }
.category-tag.haircare { background: rgba(120, 140, 93, 0.15); color: #788c5d; }
.category-tag.tips { background: rgba(175, 169, 236, 0.15); color: #afa9ec; }

/* --- Categories Section --- */
.categories {
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity var(--transition);
  opacity: 0.6;
}

.category-card:hover img {
  transform: scale(1.06);
  opacity: 0.8;
}

.category-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 40%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.category-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Latest Reviews --- */
.reviews {
  padding: var(--section-gap) 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.review-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}

.review-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover .review-card-image img {
  transform: scale(1.04);
}

.review-card-body {
  padding: 24px;
}

.review-card-body .category-tag {
  margin-bottom: 12px;
}

.review-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.review-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-card-meta .read-more {
  color: var(--accent-gold);
  font-weight: 500;
  transition: color var(--transition);
}

.review-card-meta .read-more:hover {
  color: var(--accent-gold-light);
}

/* --- Editor's Picks (Full Width) --- */
.editors-pick {
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
}

.editors-pick-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.editors-pick-image {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.editors-pick-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editors-pick-content .section-label {
  margin-bottom: 16px;
}

.editors-pick-content h2 {
  margin-bottom: 20px;
}

.editors-pick-content > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.stars {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rating-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.pros-cons > div {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.pros-cons h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pros-cons .pros h4 { color: #788c5d; }
.pros-cons .cons h4 { color: #b76e79; }

.pros-cons li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.pros-cons li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--text-muted);
}

/* --- Newsletter --- */
.newsletter {
  padding: 100px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-inner h2 {
  margin-bottom: 12px;
}

.newsletter-inner p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--accent-gold);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--accent-gold-light);
}

/* --- Footer --- */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* --- Article Page --- */
.article-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.article-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
}

.article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.article-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.3) 100%);
}

.article-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 760px;
}

.article-hero-content .category-tag {
  margin-bottom: 16px;
}

.article-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.article-meta .divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* Article Body */
.article-layout {
  padding: 60px 0 var(--section-gap);
}

.article-layout-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.article-body {
  max-width: 100%;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.article-body h2 {
  font-size: 1.75rem;
  margin: 48px 0 20px;
}

.article-body h3 {
  font-size: 1.25rem;
  margin: 36px 0 16px;
}

.article-body blockquote {
  border-left: 2px solid var(--accent-gold);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.article-body .article-image {
  margin: 40px 0;
  border-radius: 4px;
  overflow: hidden;
}

.article-body .article-image img {
  width: 100%;
}

.article-body .article-image figcaption {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Ad placeholders */
.ad-slot {
  background: var(--bg-card);
  border: 1px dashed var(--border-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-height: 90px;
  margin: 32px 0;
  overflow: hidden;
}

.ad-slot-leaderboard {
  min-height: 90px;
}

.ad-slot-medium {
  min-height: 250px;
  position: relative;
  border: none;
}

.ad-slot-medium img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Article Sidebar */
.article-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-section {
  margin-bottom: 36px;
}

.sidebar-section h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-article {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-article:last-child {
  border-bottom: none;
}

.sidebar-article img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.sidebar-article-info h5 {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

.sidebar-article-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- About / Privacy / Terms Page --- */
.page-header {
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.page-content {
  padding: 60px 0 var(--section-gap);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  text-align: center;
}

.page-content h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  text-align: center;
}

.page-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content ul {
  margin: 16px auto;
  padding-left: 0;
  display: inline-block;
  text-align: left;
}

.page-content ul li {
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 4px 0 4px 20px;
  position: relative;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1px;
  background: var(--accent-gold);
}

/* --- Cookie Consent --- */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-light);
  padding: 16px clamp(24px, 4vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-bar.visible {
  transform: translateY(0);
}

.cookie-bar p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-bar p a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-bar-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-bar-actions button {
  padding: 8px 20px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: none;
}

.cookie-accept:hover {
  background: var(--accent-gold-light);
}

.cookie-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.cookie-decline:hover {
  border-color: var(--text-muted);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .editors-pick-layout {
    gap: 48px;
  }

  .article-layout-inner {
    grid-template-columns: 1fr 280px;
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
  }

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

  .featured-side {
    flex-direction: row;
  }

  .editors-pick-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .article-layout-inner {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

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

  .nav-links a {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .hero-stats {
    gap: 28px;
  }

  .hero-stats .stat-number {
    font-size: 1.5rem;
  }

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

  .featured-side {
    flex-direction: column;
  }

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

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .cookie-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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

  .category-card {
    aspect-ratio: 16/9;
  }
}
