/* ==========================================================================
   TechHer - Aitect Enhancements v3 - Complete Theme CSS
   Handles ALL layout, components, visual design for 3 sections:
   1. Technology (Dark) 2. Lam Dep / Beauty (Light) 3. Default / Homepage
   ========================================================================== */

/* ==========================================================================
   0. RESET & BASE
   ========================================================================== */

body {
  background: #111111;
  color: #fff;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  line-height: 1.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #7B2FFF;
  transition: color 0.3s;
}

a:hover {
  color: #9B5AFF;
}

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-content {
  padding-top: 72px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ==========================================================================
   1. PRELOADER
   ========================================================================== */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__dots {
  display: flex;
  gap: 10px;
}

.preloader__dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #A58EFF;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}

.preloader__dots span:nth-child(1) { animation-delay: -0.32s; }
.preloader__dots span:nth-child(2) { animation-delay: -0.16s; }
.preloader__dots span:nth-child(3) { animation-delay: 0s; }
.preloader__dots span:nth-child(4) { animation-delay: 0.16s; }

@keyframes preloaderPulse {
  0%, 80%, 100% {
    transform: scale(0.5);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   2. HEADER (Always dark)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
  transition: all 0.3s;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5C00E5, #9333EA, #EC4899, #5C00E5);
  background-size: 300% 100%;
  animation: headerGradient 8s linear infinite;
}

@keyframes headerGradient {
  0% { background-position: 0 0; }
  100% { background-position: 300% 0; }
}

.site-header--sticky {
  background: rgba(17, 17, 17, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #5C00E5, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-title-link {
  text-decoration: none;
}

/* Primary Navigation */
.primary-menu {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.primary-menu .menu-item {
  position: relative;
}

.primary-menu .menu-item > a,
.primary-menu .nav-link {
  color: #A0A0A0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 9999px;
  transition: all 0.3s;
  display: inline-block;
}

.primary-menu .menu-item > a:hover,
.primary-menu .current-menu-item > a {
  color: #fff;
  background: rgba(92, 0, 229, 0.12);
}

/* Dropdown Submenus */
.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 100;
  list-style: none;
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .has-dropdown:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-menu .sub-menu .menu-item a {
  display: block;
  padding: 10px 16px;
  color: #A0A0A0;
  border-radius: 8px;
  font-size: 0.85rem;
}

.primary-menu .sub-menu .menu-item a:hover {
  background: rgba(92, 0, 229, 0.1);
  color: #fff;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #A0A0A0;
  padding: 4px;
  cursor: pointer;
  display: inline-flex;
  vertical-align: middle;
}

/* Header Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-toggle,
.dark-mode-toggle {
  background: none;
  border: none;
  color: #A0A0A0;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.search-toggle:hover,
.dark-mode-toggle:hover {
  color: #fff;
  background: rgba(92, 0, 229, 0.15);
}

.site-header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .site-header__cta {
    display: inline-flex;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background: #A0A0A0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .site-header__nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-header__cta {
    display: none !important;
  }
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 2px;
}

.language-switcher ul {
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.language-switcher li {
  list-style: none;
}

.language-switcher a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}

.language-switcher a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher .lang-flag {
  width: 16px;
  height: 11px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.2s;
  display: block;
}

.language-switcher a:hover .lang-flag {
  opacity: 1;
}

/* Active / current language */
.language-switcher .current-lang a,
.language-switcher li.current-lang a {
  color: #fff;
  background: rgba(92, 0, 229, 0.7);
}

.language-switcher .current-lang a .lang-flag,
.language-switcher li.current-lang a .lang-flag {
  opacity: 1;
}

/* Mobile menu variant */
.mobile-menu .language-switcher {
  margin-top: 16px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   3. MOBILE MENU
   ========================================================================== */

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu__inner {
  padding: 2rem;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__list li {
  border-bottom: 1px solid #2A2A2A;
}

.mobile-menu__list a {
  display: block;
  padding: 1rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-menu__list a:hover {
  color: #5C00E5;
}

.mobile-menu__sub-list {
  list-style: none;
  padding: 0 0 0 1rem;
  margin: 0;
}

.mobile-menu__sub-list a {
  font-size: 0.95rem;
  color: #888;
  padding: 0.75rem 0;
}

/* ==========================================================================
   4. HERO SECTION (Homepage only)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0A0A0A;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-img);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.97) 0%,
    rgba(10, 10, 10, 0.9) 35%,
    rgba(10, 10, 10, 0.6) 55%,
    rgba(10, 10, 10, 0.3) 75%,
    rgba(10, 10, 10, 0.1) 100%
  );
  z-index: 1;
}

/* Particles is now the wrapper for hero content + image */
.hero__particles {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  min-height: inherit;
}

/* Canvas is rendered behind content as background layer */
.hero__particles > canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
}

/* Container and inner sit ABOVE the canvas */
.hero__particles > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(92, 0, 229, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 0, 229, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}

/* Hero Glow Orbs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 2;
  animation: glowPulse 10s ease-in-out infinite;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(92, 0, 229, 0.25) 0%, transparent 70%);
  top: -50px;
  right: 15%;
}

.hero__glow--2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  bottom: -80px;
  left: 10%;
  animation-delay: -5s;
}

@keyframes glowPulse {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 1;
  }
}

/* Hero Inner - Content left, image is absolute bg layer on right */
.hero__inner {
  position: relative;
  z-index: 10;
  display: block;
}

.hero__content {
  max-width: 55%;
  position: relative;
  z-index: 15;
  animation: heroSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero__highlight {
  background: #5C00E5;
  color: #fff;
  padding: 2px 14px;
  display: inline-block;
  margin: 2px 0;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: #A0A0A0;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 2.5rem;
}

/* Hero CTA Buttons */
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Hero Trust Bar */
.hero__trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__trust-avatars {
  display: flex;
}

.hero__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #111;
  margin-left: -12px;
  object-fit: cover;
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__trust-text {
  font-size: 0.9rem;
  color: #A0A0A0;
}

.hero__trust-text strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
}

.hero__trust-divider {
  width: 1px;
  height: 50px;
  background: #333;
}

.hero__trust-star {
  font-size: 2rem;
  color: #F59E0B;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.3));
}

/* Hero Image - Background layer, hero visible on right */
.hero__image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 2;
  animation: heroImageIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  overflow: hidden;
  pointer-events: none;
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Overlay top/bottom 1/5 với màu tím đen khớp nền hero */
.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 4, 22, 0.95) 0%,
    transparent 20%,
    transparent 80%,
    rgba(10, 4, 22, 0.95) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Fade left edge into dark bg seamlessly */
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
  /* Color match with dark bg */
  filter: brightness(0.8) contrast(1.1) saturate(0.5);
  mix-blend-mode: lighten;
}

/* Hero Floating Badges */
.hero__float-badge {
  position: absolute;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(92, 0, 229, 0.3);
  border-radius: 12px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: badgeFloat 5s ease-in-out infinite;
  z-index: 5;
}

.hero__float-badge svg {
  color: #5C00E5;
}

.hero__float-badge--1 {
  top: 15%;
  right: -10px;
}

.hero__float-badge--2 {
  bottom: 20%;
  left: -10px;
  animation-delay: -2.5s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__trust-bar {
    justify-content: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__image-wrap {
    width: 100%;
    opacity: 0.3;
  }
}

/* ==========================================================================
   5. SECTIONS - General
   ========================================================================== */

.section {
  padding: 5rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #5C00E5;
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.section__action {
  text-align: center;
  margin-top: 3rem;
}

/* ==========================================================================
   6. POST CARDS (Dark default)
   ========================================================================== */

.posts-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.posts-grid--1col {
  grid-template-columns: 1fr;
}

@media (max-width: 1024px) {
  .posts-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .posts-grid--3col,
  .posts-grid--2col {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: #1A1A1A;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2A2A2A;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-card:hover {
  transform: translateY(-10px);
  border-color: rgba(92, 0, 229, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(92, 0, 229, 0.15);
}

.post-card__image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-card:hover .post-card__img {
  transform: scale(1.1);
}

.post-card__overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
}

.post-card__content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.post-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.post-card__title a:hover {
  color: #7B2FFF;
}

.post-card__excerpt {
  color: #888;
  font-size: 0.88rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #555;
  align-items: center;
}

.post-card__meta .icon {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 3px;
}

.post-card__meta a {
  color: #888;
  text-decoration: none;
}

.post-card__meta a:hover {
  color: #5C00E5;
}

/* ==========================================================================
   7. CATEGORY BADGES
   ========================================================================== */

.category-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.category-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 9999px;
  color: #fff;
  text-decoration: none;
  background: rgba(92, 0, 229, 0.85);
  transition: all 0.3s;
}

.category-badge:hover {
  transform: translateY(-1px);
  color: #fff;
}

.category-badge--women { background: rgba(236, 72, 153, 0.85); }
.category-badge--ml { background: rgba(92, 0, 229, 0.85); }
.category-badge--career { background: rgba(245, 158, 11, 0.85); }
.category-badge--tutorials { background: rgba(6, 147, 227, 0.85); }
.category-badge--default { background: rgba(0, 208, 132, 0.85); }

/* ==========================================================================
   8. FEATURED POSTS
   ========================================================================== */

.featured-posts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.featured-card--large {
  grid-row: span 2;
}

.featured-card {
  background: #1A1A1A;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2A2A2A;
  transition: all 0.4s;
}

.featured-card:hover {
  border-color: rgba(92, 0, 229, 0.3);
  box-shadow: 0 0 30px rgba(92, 0, 229, 0.12);
}

.featured-card__image {
  display: block;
  overflow: hidden;
}

.featured-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.featured-card__content {
  padding: 1.25rem 1.5rem;
}

.featured-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.75rem 0;
}

.featured-card__title a {
  color: #fff;
  text-decoration: none;
}

.featured-card__title a:hover {
  color: #7B2FFF;
}

.featured-card__excerpt {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.featured-card__meta {
  font-size: 0.8rem;
  color: #555;
}

@media (max-width: 768px) {
  .featured-posts__grid {
    grid-template-columns: 1fr;
  }

  .featured-card--large {
    grid-row: span 1;
  }
}

/* ==========================================================================
   9. CATEGORY HIGHLIGHTS
   ========================================================================== */

.category-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .category-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .category-highlights__grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.4s;
  display: block;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cat-color, #5C00E5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--cat-color, #5C00E5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(92, 0, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cat-color, #5C00E5);
  margin-bottom: 1.25rem;
}

.category-card__title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-card__count {
  color: #555;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.75rem;
}

.category-card__latest {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   10. STATS SECTION
   ========================================================================== */

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

.stats-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-item__number {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #5C00E5, #9333EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================================================
   11. PARTNERS BAR
   ========================================================================== */

.partners-bar {
  padding: 3rem 0;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}

.partners-bar__label {
  display: block;
  text-align: center;
  color: #555;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.partners-bar__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.partners-bar__item {
  color: #444;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.5;
  transition: color 0.3s, opacity 0.3s;
}

.partners-bar__item:hover {
  color: #888;
  opacity: 1;
}

/* ==========================================================================
   12. ABOUT SECTION
   ========================================================================== */

.about-section {
  background: #0F0F0F;
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .about-section__inner {
    grid-template-columns: 1fr;
  }
}

.about-section__image {
  position: relative;
}

.about-section__img {
  width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0 0 40px rgba(92, 0, 229, 0.15));
}

.about-section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0.5rem 0 1.25rem;
}

.about-section__text {
  color: #888;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-section__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .about-section__checklist {
    grid-template-columns: 1fr;
  }
}

.about-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-check__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(92, 0, 229, 0.15);
  color: #5C00E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-section__actions {
  margin-top: 0;
}

.about-section__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .about-section__features {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(92, 0, 229, 0.3);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(92, 0, 229, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5C00E5;
  margin-bottom: 1rem;
}

.feature-card__title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ==========================================================================
   13. FAQ ACCORDION
   ========================================================================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item[open] {
  border-color: rgba(92, 0, 229, 0.4);
  border-left: 3px solid #5C00E5;
}

.faq-item__question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  color: #5C00E5;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-item__question::after {
  content: '-';
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  color: #888;
  line-height: 1.7;
  animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   14. CATEGORY FILTER
   ========================================================================== */

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.category-filter__item {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  text-decoration: none;
  transition: all 0.3s;
}

.category-filter__item:hover,
.category-filter__item--active {
  background: #5C00E5;
  color: #fff;
  border-color: #5C00E5;
}

/* ==========================================================================
   15. PAGE HEADER
   ========================================================================== */

.page-header {
  text-align: center;
  padding: 4rem 0 3rem;
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-header__subtitle {
  color: #888;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   16. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.35s;
  text-decoration: none;
  line-height: 1.5;
}

.btn--primary {
  background: #5C00E5;
  color: #fff;
  box-shadow: 0 4px 15px rgba(92, 0, 229, 0.3);
}

.btn--primary:hover {
  background: #7B2FFF;
  color: #fff;
  box-shadow: 0 8px 30px rgba(92, 0, 229, 0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: #5C00E5;
  color: #5C00E5;
  background: rgba(92, 0, 229, 0.08);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn--icon {
  padding: 10px;
}

/* ==========================================================================
   17. NEWSLETTER SECTION
   ========================================================================== */

.newsletter-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #5C00E5 0%, #9333EA 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.newsletter-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

@media (max-width: 768px) {
  .newsletter-section__inner {
    flex-direction: column;
    text-align: center;
  }
}

.newsletter-section__content {
  flex: 1;
}

.newsletter-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.newsletter-section__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.newsletter-section__form {
  flex-shrink: 0;
}

.newsletter-section__input-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-section__input {
  padding: 14px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  min-width: 280px;
  backdrop-filter: blur(10px);
  outline: none;
  font-family: 'DM Sans', sans-serif;
}

.newsletter-section__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-section__input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-section__button {
  background: #fff !important;
  color: #5C00E5 !important;
  font-weight: 700 !important;
  border: none;
}

.newsletter-section__button:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .newsletter-section__input-group {
    flex-direction: column;
  }

  .newsletter-section__input {
    min-width: 100%;
  }
}

/* ==========================================================================
   18. FOOTER (Always dark)
   ========================================================================== */

.site-footer {
  background: #0A0A0A;
  color: #888;
}

.site-footer__widgets {
  padding: 5rem 0 3rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer__desc {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: all 0.3s;
}

.site-footer__social-link:hover {
  background: #5C00E5;
  border-color: #5C00E5;
  color: #fff;
  transform: translateY(-3px);
}

.site-footer .widget-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #5C00E5;
}

/* Footer Newsletter */
.site-footer__newsletter-desc {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.site-footer__newsletter-group {
  display: flex;
  gap: 0.5rem;
}

.site-footer__newsletter-group input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 1px solid #2A2A2A;
  background: #1A1A1A;
  color: #fff;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
}

.site-footer__newsletter-group input:focus {
  border-color: #5C00E5;
}

.site-footer__newsletter-group .btn {
  padding: 10px 16px;
}

/* Footer Bottom */
.site-footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid #1A1A1A;
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__copyright {
  color: #444;
  font-size: 0.85rem;
  margin: 0;
}

.site-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.site-footer__bottom-links a {
  color: #444;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer__bottom-links a:hover {
  color: #5C00E5;
}

/* ==========================================================================
   19. SEARCH OVERLAY
   ========================================================================== */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.search-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 0 1.25rem;
}

.search-overlay__close {
  position: absolute;
  top: -60px;
  right: 1.25rem;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 8px;
  font-size: 1.5rem;
}

.search-overlay__close:hover {
  color: #fff;
}

.search-form__inner {
  display: flex;
  align-items: center;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 9999px;
  padding: 4px;
}

.search-form__icon {
  margin-left: 16px;
  color: #555;
  flex-shrink: 0;
}

.search-form__input {
  flex: 1;
  padding: 14px 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
}

.search-form__input::placeholder {
  color: #555;
}

.search-form__submit {
  border-radius: 9999px;
}

/* ==========================================================================
   20. SCROLL TO TOP
   ========================================================================== */

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #5C00E5;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(92, 0, 229, 0.4);
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(92, 0, 229, 0.6);
}

/* ==========================================================================
   21. READING PROGRESS BAR
   ========================================================================== */

.reading-progress {
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 999;
}

.reading-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #5C00E5, #EC4899);
  transition: width 0.1s linear;
}

/* ==========================================================================
   22. POST META
   ========================================================================== */

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #555;
  align-items: center;
}

.post-meta a {
  color: #888;
  text-decoration: none;
}

.post-meta a:hover {
  color: #5C00E5;
}

/* ==========================================================================
   23. BLOG LAYOUT (No Sidebar)
   ========================================================================== */

.blog-layout {
  display: block;
}

.blog-layout__sidebar {
  display: none;
}

.blog-layout__main {
  width: 100%;
}

/* ==========================================================================
   24. BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #555;
}

.breadcrumbs a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: #5C00E5;
}

.breadcrumbs__separator {
  margin: 0 0.5rem;
  color: #444;
}

.breadcrumbs__current {
  color: #A0A0A0;
}

/* ==========================================================================
   25. PAGINATION
   ========================================================================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 3rem 0;
}

.pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination__item:hover {
  background: rgba(92, 0, 229, 0.15);
  border-color: #5C00E5;
  color: #fff;
}

.pagination__item--active {
  background: #5C00E5;
  border-color: #5C00E5;
  color: #fff;
}

.pagination__item--disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ==========================================================================
   26. SINGLE POST
   ========================================================================== */

.single-post__header {
  text-align: center;
  padding: 3rem 0 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.single-post__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.single-post__featured-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.single-post__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post__content {
  max-width: 800px;
  margin: 0 auto;
}

/* Author Box */
.author-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  margin: 3rem 0;
  align-items: center;
}

.author-box__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.author-box__bio {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .author-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Related Posts */
.related-posts {
  padding: 3rem 0;
}

.related-posts__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

/* Comments */
.comments-section {
  padding: 3rem 0;
}

.comments-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

/* ==========================================================================
   27. HOMEPAGE SECTIONS - Visual Area Indicators
   ========================================================================== */

.home-section {
  position: relative;
}

.home-section--tech {
  background: #111111;
}

.home-section--beauty {
  background: #FFFBF7;
}

.home-section--beauty .section__title {
  color: #1F1217;
}

.home-section--beauty .section__label {
  color: #E11D48;
}

.home-section--beauty .post-card {
  background: #fff;
  border-color: #F3E8E0;
}

.home-section--beauty .post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: 0 20px 40px rgba(225, 29, 72, 0.08), 0 8px 20px rgba(0, 0, 0, 0.06);
}

.home-section--beauty .post-card__title a {
  color: #1F1217;
}

.home-section--beauty .post-card__title a:hover {
  color: #E11D48;
}

.home-section--beauty .post-card__excerpt {
  color: #6B5B5E;
}

.home-section--beauty .post-card__meta {
  color: #9B8A8E;
}

.home-section--beauty .post-card__meta a {
  color: #9B8A8E;
}

.home-section--beauty .post-card__meta a:hover {
  color: #E11D48;
}

.home-section--beauty .category-badge--default {
  background: rgba(225, 29, 72, 0.85);
}

.home-section--beauty .btn--primary {
  background: linear-gradient(135deg, #E11D48, #FB923C);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.home-section--beauty .btn--primary:hover {
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.4);
}

/* ==========================================================================
   28. BEAUTY / LAM DEP THEME OVERRIDES
   ========================================================================== */

body[class*="category-lam-dep"],
body[class*="category-trang-diem"],
body[class*="category-cham-soc-da"],
body[class*="category-cham-soc-toc"],
body[class*="category-lam-dep-diy"],
body[class*="category-lam-dep-tu-ben-trong"],
body[class*="category-song-xanh-thuan-chay"],
body.section-beauty {
  background: #FFFBF7;
  color: #1F1217;
}

/* Site Content BG */
body[class*="category-lam-dep"] .site-content,
body[class*="category-trang-diem"] .site-content,
body[class*="category-cham-soc-da"] .site-content,
body[class*="category-cham-soc-toc"] .site-content,
body[class*="category-lam-dep-diy"] .site-content,
body[class*="category-lam-dep-tu-ben-trong"] .site-content,
body[class*="category-song-xanh-thuan-chay"] .site-content {
  background: #FFFBF7;
}

/* Post Cards - Beauty */
body[class*="category-lam-dep"] .post-card,
body[class*="category-trang-diem"] .post-card,
body[class*="category-cham-soc-da"] .post-card,
body[class*="category-cham-soc-toc"] .post-card,
body[class*="category-lam-dep-diy"] .post-card,
body[class*="category-lam-dep-tu-ben-trong"] .post-card,
body[class*="category-song-xanh-thuan-chay"] .post-card {
  background: #FFFFFF;
  border: 1px solid #F3E8E0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body[class*="category-lam-dep"] .post-card:hover,
body[class*="category-trang-diem"] .post-card:hover,
body[class*="category-cham-soc-da"] .post-card:hover,
body[class*="category-cham-soc-toc"] .post-card:hover,
body[class*="category-lam-dep-diy"] .post-card:hover,
body[class*="category-lam-dep-tu-ben-trong"] .post-card:hover,
body[class*="category-song-xanh-thuan-chay"] .post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: 0 20px 40px rgba(225, 29, 72, 0.08), 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Post Card Title - Beauty */
body[class*="category-lam-dep"] .post-card__title a,
body[class*="category-trang-diem"] .post-card__title a,
body[class*="category-cham-soc-da"] .post-card__title a,
body[class*="category-cham-soc-toc"] .post-card__title a,
body[class*="category-lam-dep-diy"] .post-card__title a,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__title a,
body[class*="category-song-xanh-thuan-chay"] .post-card__title a {
  color: #1F1217;
}

body[class*="category-lam-dep"] .post-card__title a:hover,
body[class*="category-trang-diem"] .post-card__title a:hover,
body[class*="category-cham-soc-da"] .post-card__title a:hover,
body[class*="category-cham-soc-toc"] .post-card__title a:hover,
body[class*="category-lam-dep-diy"] .post-card__title a:hover,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__title a:hover,
body[class*="category-song-xanh-thuan-chay"] .post-card__title a:hover {
  color: #E11D48;
}

/* Post Card Excerpt - Beauty */
body[class*="category-lam-dep"] .post-card__excerpt,
body[class*="category-trang-diem"] .post-card__excerpt,
body[class*="category-cham-soc-da"] .post-card__excerpt,
body[class*="category-cham-soc-toc"] .post-card__excerpt,
body[class*="category-lam-dep-diy"] .post-card__excerpt,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__excerpt,
body[class*="category-song-xanh-thuan-chay"] .post-card__excerpt {
  color: #6B5B5E;
}

/* Post Card Meta - Beauty */
body[class*="category-lam-dep"] .post-card__meta,
body[class*="category-trang-diem"] .post-card__meta,
body[class*="category-cham-soc-da"] .post-card__meta,
body[class*="category-cham-soc-toc"] .post-card__meta,
body[class*="category-lam-dep-diy"] .post-card__meta,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__meta,
body[class*="category-song-xanh-thuan-chay"] .post-card__meta {
  color: #9B8A8E;
}

body[class*="category-lam-dep"] .post-card__meta a,
body[class*="category-trang-diem"] .post-card__meta a,
body[class*="category-cham-soc-da"] .post-card__meta a,
body[class*="category-cham-soc-toc"] .post-card__meta a,
body[class*="category-lam-dep-diy"] .post-card__meta a,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__meta a,
body[class*="category-song-xanh-thuan-chay"] .post-card__meta a {
  color: #9B8A8E;
}

body[class*="category-lam-dep"] .post-card__meta a:hover,
body[class*="category-trang-diem"] .post-card__meta a:hover,
body[class*="category-cham-soc-da"] .post-card__meta a:hover,
body[class*="category-cham-soc-toc"] .post-card__meta a:hover,
body[class*="category-lam-dep-diy"] .post-card__meta a:hover,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__meta a:hover,
body[class*="category-song-xanh-thuan-chay"] .post-card__meta a:hover {
  color: #E11D48;
}

/* Category Badge Default - Beauty */
body[class*="category-lam-dep"] .category-badge--default,
body[class*="category-trang-diem"] .category-badge--default,
body[class*="category-cham-soc-da"] .category-badge--default,
body[class*="category-cham-soc-toc"] .category-badge--default,
body[class*="category-lam-dep-diy"] .category-badge--default,
body[class*="category-lam-dep-tu-ben-trong"] .category-badge--default,
body[class*="category-song-xanh-thuan-chay"] .category-badge--default {
  background: rgba(225, 29, 72, 0.85);
}

/* Page Header - Beauty */
body[class*="category-lam-dep"] .page-header__title,
body[class*="category-trang-diem"] .page-header__title,
body[class*="category-cham-soc-da"] .page-header__title,
body[class*="category-cham-soc-toc"] .page-header__title,
body[class*="category-lam-dep-diy"] .page-header__title,
body[class*="category-lam-dep-tu-ben-trong"] .page-header__title,
body[class*="category-song-xanh-thuan-chay"] .page-header__title {
  color: #1F1217;
}

body[class*="category-lam-dep"] .page-header__subtitle,
body[class*="category-trang-diem"] .page-header__subtitle,
body[class*="category-cham-soc-da"] .page-header__subtitle,
body[class*="category-cham-soc-toc"] .page-header__subtitle,
body[class*="category-lam-dep-diy"] .page-header__subtitle,
body[class*="category-lam-dep-tu-ben-trong"] .page-header__subtitle,
body[class*="category-song-xanh-thuan-chay"] .page-header__subtitle {
  color: #6B5B5E;
}

/* Category Filter - Beauty */
body[class*="category-lam-dep"] .category-filter__item,
body[class*="category-trang-diem"] .category-filter__item,
body[class*="category-cham-soc-da"] .category-filter__item,
body[class*="category-cham-soc-toc"] .category-filter__item,
body[class*="category-lam-dep-diy"] .category-filter__item,
body[class*="category-lam-dep-tu-ben-trong"] .category-filter__item,
body[class*="category-song-xanh-thuan-chay"] .category-filter__item {
  background: #FFF5F0;
  border-color: #F3E8E0;
  color: #6B5B5E;
}

body[class*="category-lam-dep"] .category-filter__item:hover,
body[class*="category-lam-dep"] .category-filter__item--active,
body[class*="category-trang-diem"] .category-filter__item:hover,
body[class*="category-trang-diem"] .category-filter__item--active,
body[class*="category-cham-soc-da"] .category-filter__item:hover,
body[class*="category-cham-soc-da"] .category-filter__item--active,
body[class*="category-cham-soc-toc"] .category-filter__item:hover,
body[class*="category-cham-soc-toc"] .category-filter__item--active,
body[class*="category-lam-dep-diy"] .category-filter__item:hover,
body[class*="category-lam-dep-diy"] .category-filter__item--active,
body[class*="category-lam-dep-tu-ben-trong"] .category-filter__item:hover,
body[class*="category-lam-dep-tu-ben-trong"] .category-filter__item--active,
body[class*="category-song-xanh-thuan-chay"] .category-filter__item:hover,
body[class*="category-song-xanh-thuan-chay"] .category-filter__item--active {
  background: linear-gradient(135deg, #E11D48, #FB923C);
  border-color: #E11D48;
  color: #fff;
}

/* Breadcrumbs - Beauty */
body[class*="category-lam-dep"] .breadcrumbs,
body[class*="category-trang-diem"] .breadcrumbs,
body[class*="category-cham-soc-da"] .breadcrumbs,
body[class*="category-cham-soc-toc"] .breadcrumbs,
body[class*="category-lam-dep-diy"] .breadcrumbs,
body[class*="category-lam-dep-tu-ben-trong"] .breadcrumbs,
body[class*="category-song-xanh-thuan-chay"] .breadcrumbs {
  color: #9B8A8E;
}

body[class*="category-lam-dep"] .breadcrumbs a,
body[class*="category-trang-diem"] .breadcrumbs a,
body[class*="category-cham-soc-da"] .breadcrumbs a,
body[class*="category-cham-soc-toc"] .breadcrumbs a,
body[class*="category-lam-dep-diy"] .breadcrumbs a,
body[class*="category-lam-dep-tu-ben-trong"] .breadcrumbs a,
body[class*="category-song-xanh-thuan-chay"] .breadcrumbs a {
  color: #6B5B5E;
}

body[class*="category-lam-dep"] .breadcrumbs a:hover,
body[class*="category-trang-diem"] .breadcrumbs a:hover,
body[class*="category-cham-soc-da"] .breadcrumbs a:hover,
body[class*="category-cham-soc-toc"] .breadcrumbs a:hover,
body[class*="category-lam-dep-diy"] .breadcrumbs a:hover,
body[class*="category-lam-dep-tu-ben-trong"] .breadcrumbs a:hover,
body[class*="category-song-xanh-thuan-chay"] .breadcrumbs a:hover {
  color: #E11D48;
}

/* Section Titles - Beauty */
body[class*="category-lam-dep"] .section__title,
body[class*="category-trang-diem"] .section__title,
body[class*="category-cham-soc-da"] .section__title,
body[class*="category-cham-soc-toc"] .section__title,
body[class*="category-lam-dep-diy"] .section__title,
body[class*="category-lam-dep-tu-ben-trong"] .section__title,
body[class*="category-song-xanh-thuan-chay"] .section__title {
  color: #1F1217;
}

body[class*="category-lam-dep"] .section__label,
body[class*="category-trang-diem"] .section__label,
body[class*="category-cham-soc-da"] .section__label,
body[class*="category-cham-soc-toc"] .section__label,
body[class*="category-lam-dep-diy"] .section__label,
body[class*="category-lam-dep-tu-ben-trong"] .section__label,
body[class*="category-song-xanh-thuan-chay"] .section__label {
  color: #E11D48;
}

/* Pagination - Beauty */
body[class*="category-lam-dep"] .pagination__item,
body[class*="category-trang-diem"] .pagination__item,
body[class*="category-cham-soc-da"] .pagination__item,
body[class*="category-cham-soc-toc"] .pagination__item,
body[class*="category-lam-dep-diy"] .pagination__item,
body[class*="category-lam-dep-tu-ben-trong"] .pagination__item,
body[class*="category-song-xanh-thuan-chay"] .pagination__item {
  background: #FFF5F0;
  border-color: #F3E8E0;
  color: #6B5B5E;
}

body[class*="category-lam-dep"] .pagination__item:hover,
body[class*="category-trang-diem"] .pagination__item:hover,
body[class*="category-cham-soc-da"] .pagination__item:hover,
body[class*="category-cham-soc-toc"] .pagination__item:hover,
body[class*="category-lam-dep-diy"] .pagination__item:hover,
body[class*="category-lam-dep-tu-ben-trong"] .pagination__item:hover,
body[class*="category-song-xanh-thuan-chay"] .pagination__item:hover {
  background: rgba(225, 29, 72, 0.1);
  border-color: #E11D48;
  color: #E11D48;
}

body[class*="category-lam-dep"] .pagination__item--active,
body[class*="category-trang-diem"] .pagination__item--active,
body[class*="category-cham-soc-da"] .pagination__item--active,
body[class*="category-cham-soc-toc"] .pagination__item--active,
body[class*="category-lam-dep-diy"] .pagination__item--active,
body[class*="category-lam-dep-tu-ben-trong"] .pagination__item--active,
body[class*="category-song-xanh-thuan-chay"] .pagination__item--active {
  background: linear-gradient(135deg, #E11D48, #FB923C);
  border-color: #E11D48;
  color: #fff;
}

/* Buttons - Beauty */
body[class*="category-lam-dep"] .btn--primary,
body[class*="category-trang-diem"] .btn--primary,
body[class*="category-cham-soc-da"] .btn--primary,
body[class*="category-cham-soc-toc"] .btn--primary,
body[class*="category-lam-dep-diy"] .btn--primary,
body[class*="category-lam-dep-tu-ben-trong"] .btn--primary,
body[class*="category-song-xanh-thuan-chay"] .btn--primary {
  background: linear-gradient(135deg, #E11D48, #FB923C);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

body[class*="category-lam-dep"] .btn--primary:hover,
body[class*="category-trang-diem"] .btn--primary:hover,
body[class*="category-cham-soc-da"] .btn--primary:hover,
body[class*="category-cham-soc-toc"] .btn--primary:hover,
body[class*="category-lam-dep-diy"] .btn--primary:hover,
body[class*="category-lam-dep-tu-ben-trong"] .btn--primary:hover,
body[class*="category-song-xanh-thuan-chay"] .btn--primary:hover {
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.4);
  transform: translateY(-2px);
}

/* Single Post Title - Beauty */
body[class*="category-lam-dep"] .single-post__title,
body[class*="category-trang-diem"] .single-post__title,
body[class*="category-cham-soc-da"] .single-post__title,
body[class*="category-cham-soc-toc"] .single-post__title,
body[class*="category-lam-dep-diy"] .single-post__title,
body[class*="category-lam-dep-tu-ben-trong"] .single-post__title,
body[class*="category-song-xanh-thuan-chay"] .single-post__title {
  color: #1F1217;
}

/* Headings - Beauty (DM Sans weight 700 for elegant feel) */
body[class*="category-lam-dep"] h1,
body[class*="category-lam-dep"] h2,
body[class*="category-lam-dep"] h3,
body[class*="category-trang-diem"] h1,
body[class*="category-trang-diem"] h2,
body[class*="category-trang-diem"] h3,
body[class*="category-cham-soc-da"] h1,
body[class*="category-cham-soc-da"] h2,
body[class*="category-cham-soc-da"] h3,
body[class*="category-cham-soc-toc"] h1,
body[class*="category-cham-soc-toc"] h2,
body[class*="category-cham-soc-toc"] h3,
body[class*="category-lam-dep-diy"] h1,
body[class*="category-lam-dep-diy"] h2,
body[class*="category-lam-dep-diy"] h3,
body[class*="category-lam-dep-tu-ben-trong"] h1,
body[class*="category-lam-dep-tu-ben-trong"] h2,
body[class*="category-lam-dep-tu-ben-trong"] h3,
body[class*="category-song-xanh-thuan-chay"] h1,
body[class*="category-song-xanh-thuan-chay"] h2,
body[class*="category-song-xanh-thuan-chay"] h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #1F1217;
}

/* Links - Beauty */
body[class*="category-lam-dep"] a,
body[class*="category-trang-diem"] a,
body[class*="category-cham-soc-da"] a,
body[class*="category-cham-soc-toc"] a,
body[class*="category-lam-dep-diy"] a,
body[class*="category-lam-dep-tu-ben-trong"] a,
body[class*="category-song-xanh-thuan-chay"] a {
  color: #E11D48;
}

body[class*="category-lam-dep"] a:hover,
body[class*="category-trang-diem"] a:hover,
body[class*="category-cham-soc-da"] a:hover,
body[class*="category-cham-soc-toc"] a:hover,
body[class*="category-lam-dep-diy"] a:hover,
body[class*="category-lam-dep-tu-ben-trong"] a:hover,
body[class*="category-song-xanh-thuan-chay"] a:hover {
  color: #BE123C;
}

/* Featured Cards - Beauty */
body[class*="category-lam-dep"] .featured-card,
body[class*="category-trang-diem"] .featured-card,
body[class*="category-cham-soc-da"] .featured-card,
body[class*="category-cham-soc-toc"] .featured-card,
body[class*="category-lam-dep-diy"] .featured-card,
body[class*="category-lam-dep-tu-ben-trong"] .featured-card,
body[class*="category-song-xanh-thuan-chay"] .featured-card {
  background: #FFFFFF;
  border-color: #F3E8E0;
}

body[class*="category-lam-dep"] .featured-card:hover,
body[class*="category-trang-diem"] .featured-card:hover,
body[class*="category-cham-soc-da"] .featured-card:hover,
body[class*="category-cham-soc-toc"] .featured-card:hover,
body[class*="category-lam-dep-diy"] .featured-card:hover,
body[class*="category-lam-dep-tu-ben-trong"] .featured-card:hover,
body[class*="category-song-xanh-thuan-chay"] .featured-card:hover {
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: 0 15px 35px rgba(225, 29, 72, 0.08);
}

body[class*="category-lam-dep"] .featured-card__title a,
body[class*="category-trang-diem"] .featured-card__title a,
body[class*="category-cham-soc-da"] .featured-card__title a,
body[class*="category-cham-soc-toc"] .featured-card__title a,
body[class*="category-lam-dep-diy"] .featured-card__title a,
body[class*="category-lam-dep-tu-ben-trong"] .featured-card__title a,
body[class*="category-song-xanh-thuan-chay"] .featured-card__title a {
  color: #1F1217;
}

body[class*="category-lam-dep"] .featured-card__title a:hover,
body[class*="category-trang-diem"] .featured-card__title a:hover,
body[class*="category-cham-soc-da"] .featured-card__title a:hover,
body[class*="category-cham-soc-toc"] .featured-card__title a:hover,
body[class*="category-lam-dep-diy"] .featured-card__title a:hover,
body[class*="category-lam-dep-tu-ben-trong"] .featured-card__title a:hover,
body[class*="category-song-xanh-thuan-chay"] .featured-card__title a:hover {
  color: #E11D48;
}

body[class*="category-lam-dep"] .featured-card__excerpt,
body[class*="category-trang-diem"] .featured-card__excerpt,
body[class*="category-cham-soc-da"] .featured-card__excerpt,
body[class*="category-cham-soc-toc"] .featured-card__excerpt,
body[class*="category-lam-dep-diy"] .featured-card__excerpt,
body[class*="category-lam-dep-tu-ben-trong"] .featured-card__excerpt,
body[class*="category-song-xanh-thuan-chay"] .featured-card__excerpt {
  color: #6B5B5E;
}

/* Author Box - Beauty */
body[class*="category-lam-dep"] .author-box,
body[class*="category-trang-diem"] .author-box,
body[class*="category-cham-soc-da"] .author-box,
body[class*="category-cham-soc-toc"] .author-box,
body[class*="category-lam-dep-diy"] .author-box,
body[class*="category-lam-dep-tu-ben-trong"] .author-box,
body[class*="category-song-xanh-thuan-chay"] .author-box {
  background: #FFF5F0;
  border-color: #F3E8E0;
}

body[class*="category-lam-dep"] .author-box__name,
body[class*="category-trang-diem"] .author-box__name,
body[class*="category-cham-soc-da"] .author-box__name,
body[class*="category-cham-soc-toc"] .author-box__name,
body[class*="category-lam-dep-diy"] .author-box__name,
body[class*="category-lam-dep-tu-ben-trong"] .author-box__name,
body[class*="category-song-xanh-thuan-chay"] .author-box__name {
  color: #1F1217;
}

body[class*="category-lam-dep"] .author-box__bio,
body[class*="category-trang-diem"] .author-box__bio,
body[class*="category-cham-soc-da"] .author-box__bio,
body[class*="category-cham-soc-toc"] .author-box__bio,
body[class*="category-lam-dep-diy"] .author-box__bio,
body[class*="category-lam-dep-tu-ben-trong"] .author-box__bio,
body[class*="category-song-xanh-thuan-chay"] .author-box__bio {
  color: #6B5B5E;
}

/* Related Posts Title - Beauty */
body[class*="category-lam-dep"] .related-posts__title,
body[class*="category-trang-diem"] .related-posts__title,
body[class*="category-cham-soc-da"] .related-posts__title,
body[class*="category-cham-soc-toc"] .related-posts__title,
body[class*="category-lam-dep-diy"] .related-posts__title,
body[class*="category-lam-dep-tu-ben-trong"] .related-posts__title,
body[class*="category-song-xanh-thuan-chay"] .related-posts__title {
  color: #1F1217;
}

/* Comments Title - Beauty */
body[class*="category-lam-dep"] .comments-section__title,
body[class*="category-trang-diem"] .comments-section__title,
body[class*="category-cham-soc-da"] .comments-section__title,
body[class*="category-cham-soc-toc"] .comments-section__title,
body[class*="category-lam-dep-diy"] .comments-section__title,
body[class*="category-lam-dep-tu-ben-trong"] .comments-section__title,
body[class*="category-song-xanh-thuan-chay"] .comments-section__title {
  color: #1F1217;
}

/* Ensure header/footer stay dark in beauty pages */
body[class*="category-lam-dep"] .site-header,
body[class*="category-trang-diem"] .site-header,
body[class*="category-cham-soc-da"] .site-header,
body[class*="category-cham-soc-toc"] .site-header,
body[class*="category-lam-dep-diy"] .site-header,
body[class*="category-lam-dep-tu-ben-trong"] .site-header,
body[class*="category-song-xanh-thuan-chay"] .site-header {
  background: rgba(17, 17, 17, 0.9);
}

body[class*="category-lam-dep"] .site-header .primary-menu .menu-item > a,
body[class*="category-trang-diem"] .site-header .primary-menu .menu-item > a,
body[class*="category-cham-soc-da"] .site-header .primary-menu .menu-item > a,
body[class*="category-cham-soc-toc"] .site-header .primary-menu .menu-item > a,
body[class*="category-lam-dep-diy"] .site-header .primary-menu .menu-item > a,
body[class*="category-lam-dep-tu-ben-trong"] .site-header .primary-menu .menu-item > a,
body[class*="category-song-xanh-thuan-chay"] .site-header .primary-menu .menu-item > a {
  color: #A0A0A0;
}

body[class*="category-lam-dep"] .site-footer,
body[class*="category-trang-diem"] .site-footer,
body[class*="category-cham-soc-da"] .site-footer,
body[class*="category-cham-soc-toc"] .site-footer,
body[class*="category-lam-dep-diy"] .site-footer,
body[class*="category-lam-dep-tu-ben-trong"] .site-footer,
body[class*="category-song-xanh-thuan-chay"] .site-footer {
  background: #0A0A0A;
  color: #888;
}

/* Scroll to top - Beauty override accent */
body[class*="category-lam-dep"] .scroll-to-top,
body[class*="category-trang-diem"] .scroll-to-top,
body[class*="category-cham-soc-da"] .scroll-to-top,
body[class*="category-cham-soc-toc"] .scroll-to-top,
body[class*="category-lam-dep-diy"] .scroll-to-top,
body[class*="category-lam-dep-tu-ben-trong"] .scroll-to-top,
body[class*="category-song-xanh-thuan-chay"] .scroll-to-top {
  background: linear-gradient(135deg, #E11D48, #FB923C);
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4);
}

body[class*="category-lam-dep"] .scroll-to-top:hover,
body[class*="category-trang-diem"] .scroll-to-top:hover,
body[class*="category-cham-soc-da"] .scroll-to-top:hover,
body[class*="category-cham-soc-toc"] .scroll-to-top:hover,
body[class*="category-lam-dep-diy"] .scroll-to-top:hover,
body[class*="category-lam-dep-tu-ben-trong"] .scroll-to-top:hover,
body[class*="category-song-xanh-thuan-chay"] .scroll-to-top:hover {
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.6);
}

/* Reading Progress - Beauty */
body[class*="category-lam-dep"] .reading-progress__bar,
body[class*="category-trang-diem"] .reading-progress__bar,
body[class*="category-cham-soc-da"] .reading-progress__bar,
body[class*="category-cham-soc-toc"] .reading-progress__bar,
body[class*="category-lam-dep-diy"] .reading-progress__bar,
body[class*="category-lam-dep-tu-ben-trong"] .reading-progress__bar,
body[class*="category-song-xanh-thuan-chay"] .reading-progress__bar {
  background: linear-gradient(90deg, #E11D48, #FB923C);
}

/* ==========================================================================
   29. UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.w-100 { width: 100%; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   30. ANIMATIONS
   ========================================================================== */

.fade-in {
  animation: fadeIn 0.6s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scale-in {
  animation: scaleIn 0.5s ease both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Staggered animations for grids */
.posts-grid .post-card:nth-child(1) { animation-delay: 0s; }
.posts-grid .post-card:nth-child(2) { animation-delay: 0.1s; }
.posts-grid .post-card:nth-child(3) { animation-delay: 0.2s; }
.posts-grid .post-card:nth-child(4) { animation-delay: 0.3s; }
.posts-grid .post-card:nth-child(5) { animation-delay: 0.4s; }
.posts-grid .post-card:nth-child(6) { animation-delay: 0.5s; }

/* ==========================================================================
   31. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

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

/* Tablet small: 768px */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section__header {
    margin-bottom: 2.5rem;
  }

  .hero__trust-divider {
    display: none;
  }

  .hero__trust-bar {
    gap: 1.5rem;
  }

  .about-section__checklist {
    grid-template-columns: 1fr;
  }

  .partners-bar__grid {
    gap: 2rem;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile: 640px */
@media (max-width: 640px) {
  body {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .page-header {
    padding: 2.5rem 0 2rem;
  }

  .hero {
    padding: 80px 0 30px;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .newsletter-section__input {
    min-width: 100%;
  }

  .author-box {
    padding: 1.5rem;
  }

  .stats-section__grid {
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .category-filter {
    gap: 0.375rem;
  }

  .category-filter__item {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .post-card__content {
    padding: 1rem 1.25rem 1.25rem;
  }
}

/* ==========================================================================
   32. PRINT STYLES
   ========================================================================== */

@media print {
  .site-header,
  .site-footer,
  .preloader,
  .scroll-to-top,
  .reading-progress,
  .search-overlay,
  .mobile-menu,
  .newsletter-section,
  .hero__particles,
  .hero__glow {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  .site-content {
    padding-top: 0 !important;
  }
}

/* ==========================================================================
   ABOUT PAGE - Split Layout with Personal Photo
   ========================================================================== */

.about-hero {
  padding: 5rem 0 4rem;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-hero__image {
    order: -1;
    max-width: 350px;
    margin: 0 auto;
  }
}

.about-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #5C00E5;
  margin-bottom: 0.75rem;
}

.about-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero__text {
  color: #A0A0A0;
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.about-hero__image {
  position: relative;
}

.about-hero__photo {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(92, 0, 229, 0.2);
  transition: all 0.5s ease;
}

.about-hero__photo:hover {
  border-color: rgba(92, 0, 229, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(92, 0, 229, 0.15);
  transform: translateY(-5px);
}

/* Glow effect behind photo */
.about-hero__image::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(92, 0, 229, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
  border-radius: 50%;
}

/* Placeholder when no photo set */
.about-hero__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #1A1A1A;
  border: 2px dashed #2A2A2A;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #555;
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
}

/* Single post beauty overrides via body.section-beauty */
body.section-beauty { background: #FFFBF7; color: #1F1217; }
body.section-beauty .site-content { background: #FFFBF7; }
body.section-beauty .post-card { background: #fff; border-color: #F3E8E0; }
body.section-beauty .post-card:hover { border-color: #E11D48; box-shadow: 0 20px 40px rgba(225,29,72,0.1); }
body.section-beauty .post-card__title a { color: #1F1217; }
body.section-beauty .post-card__title a:hover { color: #E11D48; }
body.section-beauty .post-card__excerpt { color: #6B5B5E; }
body.section-beauty .post-card__meta { color: #9B8A8E; }
body.section-beauty .page-header__title { color: #1F1217; }
body.section-beauty .page-header__subtitle { color: #6B5B5E; }
body.section-beauty .section__title { color: #1F1217; }
body.section-beauty .section__label { color: #E11D48; }
body.section-beauty .breadcrumbs__link { color: #6B5B5E; }
body.section-beauty .breadcrumbs__item--current { color: #1F1217; }
body.section-beauty .category-badge--default { background: rgba(225,29,72,0.85); }
body.section-beauty .btn--primary { background: linear-gradient(135deg, #E11D48, #FB923C); }
body.section-beauty .btn--primary:hover { box-shadow: 0 8px 30px rgba(225,29,72,0.4); }
body.section-beauty .category-filter__item--active { background: #E11D48; border-color: #E11D48; }
body.section-beauty .pagination__item .current { background: #E11D48; border-color: #E11D48; }
body.section-beauty .article-header__title { color: #1F1217; }
body.section-beauty .entry-content h2, body.section-beauty .entry-content h3 { color: #1F1217; }
body.section-beauty .entry-content p { color: #4A3F42; }
body.section-beauty .related-card { background: #fff; border-color: #F3E8E0; }
body.section-beauty .author-bio { background: #fff; border-color: #F3E8E0; }
body.section-beauty .table-of-contents { background: #FFF7F2; border-color: #F3E8E0; }
body.section-beauty .social-sharing { border-color: #F3E8E0; }
body.section-beauty .article-tags { border-color: #F3E8E0; }
body.section-beauty .article-tags__tag { color: #E11D48; background: rgba(225,29,72,0.08); }

/* ==========================================================================
   ENHANCED SINGLE POST LAYOUT v4
   ========================================================================== */

.post-hero {
  position: relative;
  min-height: 480px;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: #0A0A0A;
}
.post-hero__bg { position: absolute; inset: 0; z-index: 0; }
.post-hero__bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: blur(2px); }
.post-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 60%, rgba(17,17,17,1) 100%);
  z-index: 1;
}
.post-hero__content { position: relative; z-index: 2; max-width: 920px; text-align: center; margin: 0 auto; }
.post-hero__content .breadcrumbs { margin-bottom: 1.5rem; }
.post-hero__content .breadcrumbs__list { justify-content: center; }
.post-hero__meta-top { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.post-hero__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 auto 1.25rem; max-width: 900px;
}
.post-hero__excerpt {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: #B8B8B8; line-height: 1.7;
  max-width: 720px; margin: 0 auto 2rem;
}
.post-hero__meta {
  display: flex; justify-content: center; align-items: center;
  gap: 2rem; flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 700px; margin: 0 auto;
}
.post-hero__author { display: flex; align-items: center; gap: 12px; text-align: left; }
.post-hero__avatar { border-radius: 50%; border: 2px solid rgba(92,0,229,0.5); }
.post-hero__author-label { display: block; font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.post-hero__author-name { display: block; font-size: 0.95rem; font-weight: 600; color: #fff; }
.post-hero__stats { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.post-hero__stat { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: #A0A0A0; }
.post-hero__stat svg { color: #5C00E5; }

.post-body { padding: 4rem 0; background: #111111; }
.post-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 4rem; align-items: start;
}
@media (max-width: 1024px) {
  .post-body__grid { grid-template-columns: 1fr; }
  .post-body__sidebar { display: none; }
}
.post-body__main { min-width: 0; max-width: 800px; }
.post-body__sidebar { position: relative; }
.post-body__sidebar-inner { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 2rem; }
.post-toc-mobile { display: none; margin-bottom: 2rem; }
@media (max-width: 1024px) {
  .post-toc-mobile { display: block; }
  .post-toc-desktop { display: none; }
}

.table-of-contents { background: #1A1A1A; border: 1px solid #2A2A2A; border-radius: 14px; padding: 1.5rem; }
.table-of-contents__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #2A2A2A; }
.table-of-contents__title { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin: 0; }
.table-of-contents__toggle { background: none; border: none; color: #888; cursor: pointer; padding: 4px; border-radius: 4px; transition: all 0.2s; }
.table-of-contents__toggle:hover { color: #5C00E5; background: rgba(92,0,229,0.1); }
.table-of-contents__list { list-style: none; padding: 0; margin: 0; max-height: 500px; overflow-y: auto; }
.table-of-contents__list li { margin: 0; padding: 0; border-left: 2px solid transparent; padding-left: 12px; margin-bottom: 8px; transition: all 0.2s; }
.table-of-contents__list li.is-active { border-left-color: #5C00E5; }
.table-of-contents__list a { color: #888; font-size: 0.88rem; text-decoration: none; line-height: 1.5; display: block; padding: 4px 0; transition: color 0.2s; }
.table-of-contents__list a:hover, .table-of-contents__list a.toc-active { color: #A78BFA; }
.table-of-contents__list ol { list-style: none; padding-left: 16px; margin-top: 8px; }
.table-of-contents__list ol a { font-size: 0.82rem; color: #666; }

.post-share-sticky { background: #1A1A1A; border: 1px solid #2A2A2A; border-radius: 14px; padding: 1.25rem; }
.post-share-sticky__label { display: block; font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.post-share-sticky__buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.post-share-sticky__btn { width: 38px; height: 38px; border-radius: 10px; background: #222; border: 1px solid #333; color: #A0A0A0; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; transition: all 0.25s; }
.post-share-sticky__btn:hover { background: #5C00E5; border-color: #5C00E5; color: #fff; transform: translateY(-2px); }

.entry-content.prose { font-size: 1.05rem; line-height: 1.85; color: #C0C0C0; }
.entry-content .lead {
  font-size: 1.2rem; line-height: 1.75; color: #E0E0E0; font-weight: 400;
  margin-bottom: 2rem; padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(92,0,229,0.08), rgba(147,51,234,0.04));
  border-left: 4px solid #5C00E5; border-radius: 0 10px 10px 0;
}
.entry-content h2 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 700; color: #fff;
  line-height: 1.3; margin: 3rem 0 1.25rem; scroll-margin-top: 100px; position: relative;
}
.entry-content h2::before {
  content: ""; position: absolute; left: -1.25rem; top: 50%;
  transform: translateY(-50%); width: 4px; height: 60%;
  background: linear-gradient(180deg, #5C00E5, #9333EA);
  border-radius: 2px; opacity: 0; transition: opacity 0.3s;
}
.entry-content h2:hover::before { opacity: 1; }
.entry-content h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); font-weight: 700; color: #fff; line-height: 1.35; margin: 2.25rem 0 1rem; scroll-margin-top: 100px; }
.entry-content h4 { font-size: 1.15rem; font-weight: 600; color: #E0E0E0; margin: 1.75rem 0 0.75rem; }
.entry-content p { margin: 0 0 1.5rem; }
.entry-content a { color: #A78BFA; text-decoration: underline; text-decoration-color: rgba(167,139,250,0.3); text-underline-offset: 4px; transition: all 0.2s; }
.entry-content a:hover { color: #C4B5FD; text-decoration-color: #A78BFA; }
.entry-content strong { color: #fff; font-weight: 700; }
.entry-content em { color: #D0D0D0; }
.entry-content ul, .entry-content ol { margin: 1rem 0 1.75rem; padding-left: 1.5rem; }
.entry-content ul li, .entry-content ol li { margin-bottom: 0.65rem; line-height: 1.75; padding-left: 0.25rem; }
.entry-content ul li::marker { color: #5C00E5; font-size: 1.2em; }
.entry-content ol li::marker { color: #5C00E5; font-weight: 700; }

.entry-content blockquote {
  margin: 2.5rem 0; padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(92,0,229,0.08), rgba(147,51,234,0.04));
  border-left: 4px solid #5C00E5; border-radius: 0 14px 14px 0; position: relative;
}
.entry-content blockquote::before { content: "\201C"; position: absolute; top: -10px; left: 12px; font-size: 4rem; color: #5C00E5; opacity: 0.3; font-family: Georgia, serif; line-height: 1; }
.entry-content blockquote p { font-size: 1.15rem; line-height: 1.7; color: #E0E0E0; font-style: italic; margin-bottom: 0.5rem; }
.entry-content blockquote p:last-child { margin-bottom: 0; }

.entry-content pre {
  background: #0D1117; border: 1px solid #1F2937;
  border-radius: 14px; padding: 3rem 1.75rem 1.5rem; margin: 2rem 0;
  overflow-x: auto; font-size: 0.9rem; line-height: 1.7;
  position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.entry-content pre::before {
  content: ""; position: absolute; top: 14px; left: 16px;
  width: 12px; height: 12px; border-radius: 50%; background: #FF5F56;
  box-shadow: 20px 0 0 #FFBD2E, 40px 0 0 #27C93F;
}
.entry-content pre code { background: none; color: #E6EDF3; font-family: "JetBrains Mono", "Fira Code", monospace; font-size: 0.88rem; padding: 0; border-radius: 0; }
.entry-content code { background: rgba(92,0,229,0.12); color: #C4B5FD; font-family: "JetBrains Mono", monospace; padding: 0.2em 0.5em; border-radius: 5px; font-size: 0.88em; border: 1px solid rgba(92,0,229,0.2); }

.entry-content img, .entry-content .wp-block-image img { width: 100%; height: auto; border-radius: 14px; margin: 2rem 0; box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.entry-content figure { margin: 2rem 0; }
.entry-content figcaption { text-align: center; font-size: 0.85rem; color: #888; margin-top: 0.75rem; font-style: italic; }
.entry-content hr { border: 0; height: 1px; background: linear-gradient(90deg, transparent, #2A2A2A, transparent); margin: 3rem 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 2rem 0; background: #1A1A1A; border-radius: 12px; overflow: hidden; font-size: 0.95rem; }
.entry-content table th, .entry-content table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid #2A2A2A; }
.entry-content table th { background: rgba(92,0,229,0.12); color: #fff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.entry-content table tr:hover td { background: rgba(92,0,229,0.03); }

.article-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem; margin: 3rem 0; padding: 1.5rem 0; border-top: 1px solid #2A2A2A; border-bottom: 1px solid #2A2A2A; }
.article-tags__label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-right: 0.5rem; }
.article-tags__tag { padding: 6px 14px; background: rgba(92,0,229,0.08); border: 1px solid rgba(92,0,229,0.2); color: #A78BFA; border-radius: 9999px; font-size: 0.82rem; font-weight: 500; text-decoration: none; transition: all 0.2s; }
.article-tags__tag:hover { background: #5C00E5; color: #fff; border-color: #5C00E5; transform: translateY(-2px); }

.post-newsletter-cta { margin: 3.5rem 0; padding: 2.5rem 2rem; background: linear-gradient(135deg, #5C00E5 0%, #9333EA 100%); border-radius: 18px; position: relative; overflow: hidden; text-align: center; }
.post-newsletter-cta::before { content: ""; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%); border-radius: 50%; }
.post-newsletter-cta__content { position: relative; z-index: 1; margin-bottom: 1.5rem; }
.post-newsletter-cta__content h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0 0 0.5rem; }
.post-newsletter-cta__content p { color: rgba(255,255,255,0.9); margin: 0; font-size: 0.95rem; }
.post-newsletter-cta__form { position: relative; z-index: 1; display: flex; gap: 8px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.post-newsletter-cta__form input { flex: 1; min-width: 240px; padding: 14px 20px; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.12); color: #fff; font-family: "DM Sans", sans-serif; font-size: 0.95rem; backdrop-filter: blur(10px); outline: none; }
.post-newsletter-cta__form input::placeholder { color: rgba(255,255,255,0.6); }
.post-newsletter-cta__form .btn { background: #fff; color: #5C00E5; font-weight: 700; }
.post-newsletter-cta__form .btn:hover { background: #F5F5F5; transform: translateY(-2px); }

.author-bio { display: flex; gap: 1.5rem; padding: 2rem; background: #1A1A1A; border: 1px solid #2A2A2A; border-radius: 16px; margin: 3rem 0; }
.author-bio__avatar img { border-radius: 50%; border: 3px solid rgba(92,0,229,0.3); }
.author-bio__content { flex: 1; }
.author-bio__label { display: block; font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.25rem; }
.author-bio__name { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.5rem; }
.author-bio__name a { color: #fff; text-decoration: none; }
.author-bio__name a:hover { color: #A78BFA; }
.author-bio__desc { color: #A0A0A0; font-size: 0.95rem; line-height: 1.7; margin: 0 0 1rem; }
.author-bio__link { color: #A78BFA; font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.author-bio__link:hover { color: #C4B5FD; }

.post-navigation { margin: 3rem 0; padding-top: 2rem; border-top: 1px solid #2A2A2A; }
.post-navigation__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .post-navigation__inner { grid-template-columns: 1fr; } }
.post-navigation__link { display: block; padding: 1.25rem 1.5rem; background: #1A1A1A; border: 1px solid #2A2A2A; border-radius: 14px; text-decoration: none; transition: all 0.25s; }
.post-navigation__link:hover { background: #222; border-color: rgba(92,0,229,0.4); transform: translateY(-2px); }
.post-navigation__link--next { text-align: right; }
.post-navigation__label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 700; color: #A78BFA; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.post-navigation__title { display: block; font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.4; }

.related-posts { background: #0C0C0C; padding: 4rem 0; }
.related-posts__title { font-size: 2rem; font-weight: 700; color: #fff; text-align: center; margin: 0 0 2.5rem; }
.related-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .related-posts__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .related-posts__grid { grid-template-columns: 1fr; } }

.post-comments { padding: 4rem 0; background: #111111; border-top: 1px solid #1A1A1A; }
.post-comments .comments-area { max-width: 800px; margin: 0 auto; }

.social-sharing { margin: 3rem 0; padding: 2rem; background: #1A1A1A; border-radius: 16px; border: 1px solid #2A2A2A; }
.social-sharing__label { display: block; font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; text-align: center; }
.social-sharing__buttons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.social-sharing__btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 9999px; background: #222; border: 1px solid #333; color: #fff; font-size: 0.88rem; font-weight: 500; text-decoration: none; cursor: pointer; transition: all 0.25s; }
.social-sharing__btn:hover { transform: translateY(-2px); }
.social-sharing__btn--twitter:hover { background: #000; border-color: #000; }
.social-sharing__btn--linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.social-sharing__btn--facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-sharing__btn--copy:hover { background: #5C00E5; border-color: #5C00E5; }

/* Beauty overrides for enhanced single post */
body.section-beauty .post-hero { background: #FFF7F2; }
body.section-beauty .post-hero__overlay { background: linear-gradient(180deg, rgba(255,247,242,0.5) 0%, rgba(255,247,242,0.88) 60%, rgba(255,251,247,1) 100%); }
body.section-beauty .post-hero__title, body.section-beauty .post-hero__author-name { color: #1F1217; }
body.section-beauty .post-hero__excerpt, body.section-beauty .post-hero__stat { color: #6B5B5E; }
body.section-beauty .post-hero__stat svg, body.section-beauty .post-hero__author-label { color: #E11D48; }
body.section-beauty .post-hero__avatar { border-color: rgba(225,29,72,0.4); }
body.section-beauty .post-hero__meta { border-top-color: rgba(225,29,72,0.15); }
body.section-beauty .post-body, body.section-beauty .related-posts, body.section-beauty .post-comments { background: #FFFBF7; }
body.section-beauty .entry-content.prose { color: #4A3F42; }
body.section-beauty .entry-content h2, body.section-beauty .entry-content h3, body.section-beauty .entry-content h4, body.section-beauty .entry-content strong { color: #1F1217; }
body.section-beauty .entry-content h2::before { background: linear-gradient(180deg, #E11D48, #FB923C); }
body.section-beauty .entry-content a { color: #E11D48; }
body.section-beauty .entry-content .lead { background: linear-gradient(135deg, rgba(225,29,72,0.06), rgba(251,146,60,0.04)); border-left-color: #E11D48; color: #4A3F42; }
body.section-beauty .entry-content blockquote { background: linear-gradient(135deg, rgba(225,29,72,0.06), rgba(251,146,60,0.04)); border-left-color: #E11D48; }
body.section-beauty .entry-content blockquote::before { color: #E11D48; }
body.section-beauty .entry-content blockquote p { color: #1F1217; }
body.section-beauty .entry-content code { background: rgba(225,29,72,0.08); color: #BE185D; border-color: rgba(225,29,72,0.15); }
body.section-beauty .entry-content ul li::marker, body.section-beauty .entry-content ol li::marker { color: #E11D48; }
body.section-beauty .table-of-contents { background: #fff; border-color: #F3E8E0; }
body.section-beauty .table-of-contents__title { color: #1F1217; }
body.section-beauty .table-of-contents__list a:hover, body.section-beauty .table-of-contents__list a.toc-active { color: #E11D48; }
body.section-beauty .post-share-sticky { background: #fff; border-color: #F3E8E0; }
body.section-beauty .post-share-sticky__label { color: #1F1217; }
body.section-beauty .post-share-sticky__btn { background: #FFF7F2; border-color: #F3E8E0; color: #6B5B5E; }
body.section-beauty .post-share-sticky__btn:hover { background: #E11D48; border-color: #E11D48; color: #fff; }
body.section-beauty .post-newsletter-cta { background: linear-gradient(135deg, #E11D48 0%, #FB923C 100%); }
body.section-beauty .post-newsletter-cta__form .btn { color: #E11D48; }
body.section-beauty .author-bio { background: #fff; border-color: #F3E8E0; }
body.section-beauty .author-bio__name a { color: #1F1217; }
body.section-beauty .author-bio__desc { color: #6B5B5E; }
body.section-beauty .post-navigation { border-top-color: #F3E8E0; }
body.section-beauty .post-navigation__link { background: #fff; border-color: #F3E8E0; }
body.section-beauty .post-navigation__link:hover { border-color: #E11D48; }
body.section-beauty .post-navigation__title { color: #1F1217; }
body.section-beauty .post-navigation__label { color: #E11D48; }
body.section-beauty .social-sharing { background: #fff; border-color: #F3E8E0; }
body.section-beauty .social-sharing__label { color: #1F1217; }

/* ==========================================================================
   CALLOUT BOXES - Rich content blocks within articles
   ========================================================================== */
.callout {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 12px;
  border-left: 4px solid;
  background: #1A1A1A;
  align-items: flex-start;
  line-height: 1.7;
}

.callout__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.callout__content {
  flex: 1;
  color: #C0C0C0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.callout__content strong {
  color: #fff;
  font-weight: 700;
}

.callout__content code {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.88em;
}

/* Callout variants */
.callout--tip {
  border-left-color: #10B981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
}
.callout--tip .callout__icon { background: rgba(16, 185, 129, 0.15); }

.callout--info {
  border-left-color: #3B82F6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.02));
}
.callout--info .callout__icon { background: rgba(59, 130, 246, 0.15); }

.callout--warning {
  border-left-color: #F59E0B;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
}
.callout--warning .callout__icon { background: rgba(245, 158, 11, 0.15); }

.callout--stats {
  border-left-color: #5C00E5;
  background: linear-gradient(135deg, rgba(92, 0, 229, 0.08), rgba(147, 51, 234, 0.02));
}
.callout--stats .callout__icon { background: rgba(92, 0, 229, 0.15); }

/* Beauty overrides for callouts */
body.section-beauty .callout {
  background: #fff;
  color: #4A3F42;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
body.section-beauty .callout__content { color: #4A3F42; }
body.section-beauty .callout__content strong { color: #1F1217; }
body.section-beauty .callout__icon { background: rgba(225, 29, 72, 0.08); }
body.section-beauty .callout--tip { background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), #fff); }
body.section-beauty .callout--info { background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), #fff); }
body.section-beauty .callout--warning { background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), #fff); }
body.section-beauty .callout--stats { background: linear-gradient(135deg, rgba(225, 29, 72, 0.05), #fff); border-left-color: #E11D48; }

/* ==========================================================================
   AITECT-INSPIRED UX UPGRADES - v5
   ========================================================================== */

/* Section subtitle */
.section__subtitle {
  color: #888;
  font-size: 1.05rem;
  margin: 1rem auto 0;
  max-width: 620px;
  line-height: 1.7;
}

.section__subtitle--beauty { color: #6B5B5E; }

.section__header--left {
  text-align: left;
  margin-bottom: 0;
}

.section__header--left .section__title { max-width: 100%; }

/* ==========================================================================
   FEATURES GRID - Service cards with images (Aitect style)
   ========================================================================== */
.features-section {
  position: relative;
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  display: block;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(92, 0, 229, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(92, 0, 229, 0.15);
}

.feature-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0A0A0A;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.85);
}

.feature-card:hover .feature-card__image img {
  transform: scale(1.08);
  filter: brightness(0.95);
}

.feature-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(26, 26, 26, 0.95) 100%);
  pointer-events: none;
}

.feature-card__icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(92, 0, 229, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(92, 0, 229, 0.4);
  transition: all 0.3s;
}

.feature-card:hover .feature-card__icon {
  transform: rotate(-5deg) scale(1.1);
}

.feature-card__icon--pink { background: rgba(236, 72, 153, 0.95); box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4); }
.feature-card__icon--amber { background: rgba(245, 158, 11, 0.95); box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4); }
.feature-card__icon--blue { background: rgba(6, 147, 227, 0.95); box-shadow: 0 8px 20px rgba(6, 147, 227, 0.4); }
.feature-card__icon--rose { background: rgba(225, 29, 72, 0.95); box-shadow: 0 8px 20px rgba(225, 29, 72, 0.4); }

.feature-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.feature-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.feature-card__desc {
  color: #A0A0A0;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #A78BFA;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap 0.25s;
}

.feature-card:hover .feature-card__link {
  gap: 12px;
  color: #C4B5FD;
}

.feature-card--beauty:hover {
  border-color: rgba(225, 29, 72, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(225, 29, 72, 0.18);
}

.feature-card--beauty .feature-card__link {
  color: #FB7185;
}

.feature-card--beauty:hover .feature-card__link {
  color: #FECDD3;
}

/* CTA card variant */
.feature-card--cta {
  background: linear-gradient(135deg, #5C00E5 0%, #9333EA 100%);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card--cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  border-radius: 50%;
}

.feature-card--cta:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(92, 0, 229, 0.4);
}

.feature-card__cta-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.feature-card__cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
}

.feature-card--cta .feature-card__title { color: #fff; }
.feature-card--cta .feature-card__desc { color: rgba(255, 255, 255, 0.85); }
.feature-card--cta .btn--primary {
  background: #fff;
  color: #5C00E5;
  margin-top: 0.5rem;
}
.feature-card--cta .btn--primary:hover {
  background: #F5F5F5;
  transform: translateY(-2px);
}

/* ==========================================================================
   STATS SECTION - Aitect style 2-column with header
   ========================================================================== */
.stats-section {
  background: linear-gradient(180deg, #0F0F0F 0%, #111111 100%);
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}

.stats-section__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .stats-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .section__header--left { text-align: center; }
}

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

.stats-section .stat-item {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stats-section .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5C00E5, #9333EA);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.stats-section .stat-item:hover {
  border-color: rgba(92, 0, 229, 0.4);
  transform: translateY(-4px);
}

.stats-section .stat-item:hover::before {
  transform: scaleX(1);
}

.stats-section .stat-item__number {
  display: block;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #5C00E5, #C4B5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stats-section .stat-item__label {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stats-section .stat-item__sublabel {
  display: block;
  color: #666;
  font-size: 0.82rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  background: #0F0F0F;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }

.testimonial-card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.4s;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(92, 0, 229, 0.3);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(92, 0, 229, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card__rating {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
}

.testimonial-card__quote {
  color: #C0C0C0;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1.25rem;
  border-top: 1px solid #2A2A2A;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(92, 0, 229, 0.3);
  object-fit: cover;
}

.testimonial-card__author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: #888;
}

/* ==========================================================================
   ABOUT SECTION - Floating cards on image
   ========================================================================== */
.about-section__image {
  position: relative;
}

.about-section__floating-card {
  position: absolute;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(92, 0, 229, 0.3);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-section__floating-card--1 {
  top: 8%;
  left: -10%;
  animation-delay: 0s;
}

.about-section__floating-card--2 {
  bottom: 12%;
  right: -8%;
  animation-delay: -2s;
}

.about-section__floating-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(92, 0, 229, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section__floating-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.about-section__floating-card span {
  display: block;
  font-size: 0.78rem;
  color: #888;
}

@media (max-width: 1024px) {
  .about-section__floating-card { display: none; }
}

/* ==========================================================================
   FAQ SECTION - 2-column layout (header left, questions right)
   ========================================================================== */
.faq-section {
  background: #0F0F0F;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .faq-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.faq-section__header {
  position: sticky;
  top: 100px;
}

.faq-section__header .section__label,
.faq-section__header .section__title {
  text-align: left;
}

.faq-section__intro {
  color: #888;
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.faq-list {
  max-width: 100%;
  margin: 0;
}

/* ==========================================================================
   ENHANCED POST CARDS - Better hover
   ========================================================================== */
.post-card {
  display: flex;
  flex-direction: column;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5C00E5, #9333EA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
  z-index: 3;
}

.post-card:hover {
  transform: translateY(-10px);
  border-color: rgba(92, 0, 229, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(92, 0, 229, 0.15);
}

.post-card:hover::before {
  transform: scaleX(1);
}

.post-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0A0A0A;
}

.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-card:hover .post-card__img {
  transform: scale(1.1);
}

.post-card__overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
}

.post-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem;
}

.post-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0.5rem 0 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  background-image: linear-gradient(90deg, #C4B5FD, #C4B5FD);
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s, color 0.3s;
}

.post-card:hover .post-card__title a {
  color: #C4B5FD;
}

.post-card__excerpt {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 1.25rem;
  flex: 1;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: #666;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #222;
}

/* Beauty card variant */
.post-card--beauty {
  background: #fff;
  border-color: #F3E8E0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.post-card--beauty::before {
  background: linear-gradient(90deg, #E11D48, #FB923C);
}

.post-card--beauty:hover {
  border-color: rgba(225, 29, 72, 0.4);
  box-shadow: 0 30px 60px rgba(225, 29, 72, 0.12), 0 0 40px rgba(251, 146, 60, 0.08);
}

.post-card--beauty .post-card__title a { color: #1F1217; }
.post-card--beauty:hover .post-card__title a { color: #E11D48; }
.post-card--beauty .post-card__excerpt { color: #6B5B5E; }
.post-card--beauty .post-card__meta { color: #9B8A8E; border-top-color: #F3E8E0; }

/* ==========================================================================
   FAQ Item enhanced
   ========================================================================== */
.faq-item {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover { border-color: rgba(92, 0, 229, 0.3); }

.faq-item[open] {
  border-color: rgba(92, 0, 229, 0.5);
  background: linear-gradient(180deg, rgba(92, 0, 229, 0.05), transparent);
}

.faq-item__question {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-item__question:hover { color: #C4B5FD; }
.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
  content: '+';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(92, 0, 229, 0.15);
  color: #A78BFA;
  font-size: 1.3rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.faq-item[open] .faq-item__question::after {
  content: '\2212';
  background: #5C00E5;
  color: #fff;
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 1.5rem 1.5rem;
  color: #A0A0A0;
  font-size: 0.95rem;
  line-height: 1.75;
  animation: faqReveal 0.35s ease;
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Beauty FAQ overrides */
body.section-beauty .faq-section { background: #FFF7F2; }
body.section-beauty .faq-item { background: #fff; border-color: #F3E8E0; }
body.section-beauty .faq-item__question { color: #1F1217; }
body.section-beauty .faq-item__question:hover { color: #E11D48; }
body.section-beauty .faq-item__question::after { background: rgba(225, 29, 72, 0.1); color: #E11D48; }
body.section-beauty .faq-item[open] { border-color: rgba(225, 29, 72, 0.5); background: linear-gradient(180deg, rgba(225, 29, 72, 0.04), transparent); }
body.section-beauty .faq-item[open] .faq-item__question::after { background: #E11D48; color: #fff; }
body.section-beauty .faq-item__answer { color: #6B5B5E; }

/* ==========================================================================
   PARTNERS BAR - Enhanced
   ========================================================================== */
.partners-bar {
  padding: 3rem 0;
  background: #0C0C0C;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}

.partners-bar__label {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  font-weight: 600;
}

.partners-bar__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.partners-bar__item {
  color: #555;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.6;
  transition: all 0.3s;
}

.partners-bar__item:hover {
  opacity: 1;
  color: #A78BFA;
  transform: translateY(-2px);
}

/* ==========================================================================
   BUTTON --beauty variant
   ========================================================================== */
.btn--beauty {
  background: linear-gradient(135deg, #E11D48 0%, #FB923C 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.btn--beauty:hover {
  color: #fff;
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.5);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION TRANSITIONS - Smooth backgrounds
   ========================================================================== */
.home-section--tech { background: #111111; padding: 5rem 0; }
.home-section--beauty { background: #FFFBF7; padding: 5rem 0; position: relative; }
.home-section--beauty::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, #111111 0%, transparent 100%);
  pointer-events: none;
}

.home-section--beauty .section__label--beauty { color: #E11D48; }
.home-section--beauty .section__title--beauty { color: #1F1217; }
.home-section--beauty .section__subtitle--beauty { color: #6B5B5E; }

/* ==========================================================================
   BEAUTY CATEGORY BADGE - solid rose/red with white text
   ========================================================================== */

/* All beauty subcategories now use category-badge--lamdep class (via template-tags.php) */
.category-badge--lamdep {
  background: rgba(225, 29, 72, 0.88);
  color: #fff;
}

.category-badge--lamdep:hover {
  background: rgba(190, 18, 60, 0.95);
  color: #fff;
}

/* Article tags contrast rules for beauty pages:
   - Light/transparent bg → red text (already set in section-beauty block above)
   - Ensure hover state also keeps good contrast */
body.section-beauty .article-tags__tag:hover {
  color: #fff;
  background: rgba(225, 29, 72, 0.85);
  border-color: rgba(225, 29, 72, 0.5);
}

/* ==========================================================================
   CATEGORY HERO — Redesigned (split layout, dark base, category-color accent)
   ========================================================================== */

/* ── Keyframes ─────────────────────────────────────────────────────────── */

@keyframes hero-pulse-ring {
  0%   { transform: scale(1);    opacity: 0.35; }
  50%  { transform: scale(1.18); opacity: 0;    }
  100% { transform: scale(1);    opacity: 0;    }
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes hero-badge-slide {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes hero-title-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes hero-tech-badge {
  0%, 100% { transform: translateY(0) scale(1);    opacity: 0.9; }
  50%       { transform: translateY(-6px) scale(1.04); opacity: 1; }
}

@keyframes beauty-float {
  0%,  100% { transform: translateY(0)     rotate(0deg);  opacity: 0.75; }
  33%        { transform: translateY(-14px) rotate(7deg);  opacity: 1;    }
  66%        { transform: translateY(-6px)  rotate(-4deg); opacity: 0.88; }
}

@keyframes beauty-orb-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.5;  }
  50%       { transform: scale(1.12); opacity: 0.75; }
}

/* ── Base ────────────────────────────────────────────────────────────────── */

.category-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0a0a0a;
  overflow: hidden;
  margin-bottom: 2.5rem;
  padding: 0;
}

/* Top accent line */
.category-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--category-color, #5C00E5) 30%,
    var(--category-color, #5C00E5) 70%,
    transparent 100%
  );
  opacity: 0.9;
  pointer-events: none;
}

/* ── Background layers ───────────────────────────────────────────────────── */

.category-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.category-hero__bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--category-color, #5C00E5) 0%, transparent 70%);
  opacity: 0.12;
  top: -160px;
  right: -80px;
  filter: blur(60px);
}

.category-hero__bg-glow--2 {
  width: 300px;
  height: 300px;
  opacity: 0.08;
  top: auto;
  bottom: -100px;
  right: auto;
  left: -60px;
  background: radial-gradient(circle, #5C00E5 0%, transparent 70%);
  filter: blur(50px);
}

.category-hero__bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
}

/* ── Breadcrumbs ─────────────────────────────────────────────────────────── */

.category-hero__breadcrumbs {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.category-hero__breadcrumbs .breadcrumbs__item,
.category-hero__breadcrumbs .breadcrumbs__link,
.category-hero__breadcrumbs .breadcrumbs__separator {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.category-hero__breadcrumbs .breadcrumbs__item--current {
  color: rgba(255,255,255,0.8);
}

.category-hero__breadcrumbs .breadcrumbs__link:hover {
  color: var(--category-color, #fff);
}

/* ── Content grid ────────────────────────────────────────────────────────── */

.category-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .category-hero__content { gap: 3rem; padding: 3rem 0; }
}

/* ── Text side ───────────────────────────────────────────────────────────── */

.category-hero__text {
  flex: 1 1 55%;
  min-width: 0;
}

.category-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--category-color, #5C00E5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  animation: hero-badge-slide 0.5s ease 0.1s both;
}

.category-hero__badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--category-color, #5C00E5);
  flex-shrink: 0;
  animation: hero-dot-blink 2s ease-in-out infinite;
}

.category-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 1rem;
  animation: hero-title-up 0.55s ease 0.2s both;
}

.category-hero__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 1.25rem;
  animation: hero-title-up 0.55s ease 0.3s both;
}

.category-hero__desc p { margin: 0; }

.category-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: hero-title-up 0.55s ease 0.4s both;
}

.category-hero__count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9999px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, color 0.25s ease;
}

.category-hero__count:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.category-hero__count-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Visual side ─────────────────────────────────────────────────────────── */

.category-hero__visual {
  flex: 0 0 42%;
  max-width: 42%;
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .category-hero__visual { display: flex; }
}

/* ── Tech graphic ────────────────────────────────────────────────────────── */

.category-hero__tech-graphic {
  position: relative;
  width: 100%;
  max-width: 380px;
  animation: hero-float 6s ease-in-out infinite;
}

.tech-circuit {
  width: 100%;
  height: auto;
  color: var(--category-color, #5C00E5);
}

.tech-circuit .pulse-ring {
  transform-origin: center;
  animation: hero-pulse-ring 3s ease-out infinite;
}

.tech-circuit .pulse-ring--delayed  { animation-delay: -1.5s; }
.tech-circuit .pulse-ring--center   { animation-delay: -0.8s; animation-duration: 4s; }

.tech-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9999px;
  padding: 5px 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: hero-tech-badge ease-in-out infinite;
}

.tech-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--category-color, #5C00E5);
  flex-shrink: 0;
  animation: hero-dot-blink 1.8s ease-in-out infinite;
}

.tech-badge--1 { top: 8%;    right: -8px;  animation-duration: 5s;   animation-delay: 0s; }
.tech-badge--2 { bottom: 22%; left: -10px;  animation-duration: 6s;   animation-delay: -2s; }
.tech-badge--3 { bottom: 5%;  right: 12%;   animation-duration: 4.5s; animation-delay: -1s; }

/* ── Beauty variant ──────────────────────────────────────────────────────── */

.category-hero--beauty {
  background: linear-gradient(135deg, #2A0A14 0%, #1A0A20 50%, #0A0A1A 100%);
}

.category-hero--beauty::after {
  background: linear-gradient(90deg, transparent 0%, #F43F5E 30%, #FBBF24 70%, transparent 100%);
}

.category-hero--beauty .category-hero__bg-glow {
  background: radial-gradient(circle, #F43F5E 0%, transparent 70%);
  opacity: 0.2;
}

.category-hero--beauty .category-hero__bg-glow--2 {
  background: radial-gradient(circle, #FBBF24 0%, transparent 70%);
  opacity: 0.1;
}

.category-hero--beauty .category-hero__badge {
  color: #FB7185;
}

.category-hero--beauty .category-hero__badge-dot {
  background: #FB7185;
}

.category-hero--beauty .category-hero__title {
  background: linear-gradient(135deg, #fff 40%, #FCA5A5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-hero--beauty .category-hero__count {
  background: rgba(244,63,94,0.15);
  border-color: rgba(244,63,94,0.3);
  color: rgba(255,255,255,0.85);
}

/* Beauty graphic container */
.category-hero__beauty-graphic {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 280px;
  animation: hero-float 7s ease-in-out infinite;
}

.beauty-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: beauty-orb-pulse ease-in-out infinite;
}

.beauty-orb--1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #F43F5E, transparent);
  top: 10%; left: 20%; opacity: 0.5;
  animation-duration: 5s;
}

.beauty-orb--2 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, #FBBF24, transparent);
  bottom: 10%; right: 15%; opacity: 0.45;
  animation-duration: 6s; animation-delay: -2s;
}

.beauty-orb--3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, #EC4899, transparent);
  top: 35%; right: 30%; opacity: 0.4;
  animation-duration: 4.5s; animation-delay: -1s;
}

/* Petal decoration */
.category-hero__beauty-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.category-hero__beauty-deco .petal {
  position: absolute;
  display: block;
  animation: beauty-float linear infinite;
  opacity: 0.85;
}

.category-hero__beauty-deco .petal--1 { top: 8%;  left: 12%; animation-duration: 6s;   animation-delay: 0s; }
.category-hero__beauty-deco .petal--2 { top: 12%; right: 8%; animation-duration: 8s;   animation-delay: -2s; }
.category-hero__beauty-deco .petal--3 { top: 48%; left: 5%;  animation-duration: 7s;   animation-delay: -4s; }
.category-hero__beauty-deco .petal--4 { top: 60%; right: 5%; animation-duration: 9s;   animation-delay: -1s; }
.category-hero__beauty-deco .petal--5 { top: 30%; left: 50%; animation-duration: 6.5s; animation-delay: -3s; }

/* ── Personal Brand variant ─────────────────────────────────────────────── */

@keyframes personal-pulse-ring {
  0%   { transform: scale(1);    opacity: 0.3; }
  60%  { transform: scale(1.22); opacity: 0;   }
  100% { transform: scale(1);    opacity: 0;   }
}

@keyframes personal-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  30%       { transform: translateY(-8px) rotate(1.5deg); }
  70%       { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes personal-badge-float {
  0%, 100% { transform: translateY(0) scale(1);     opacity: 0.92; }
  50%       { transform: translateY(-7px) scale(1.03); opacity: 1; }
}

@keyframes personal-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes personal-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Base dark warm background */
.category-hero--personal {
  background: radial-gradient(ellipse at 65% 50%, #1C1206 0%, #0D0905 55%, #080808 100%);
}

/* Top accent: gold gradient */
.category-hero--personal::after {
  background: linear-gradient(90deg,
    transparent 0%,
    #92400E 15%,
    #F59E0B 40%,
    #FCD34D 60%,
    #F59E0B 75%,
    #92400E 85%,
    transparent 100%
  );
  height: 2px;
  opacity: 1;
}

/* Background glow: warm amber */
.category-hero--personal .category-hero__bg-glow {
  background: radial-gradient(circle, #F59E0B 0%, transparent 70%);
  opacity: 0.1;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -120px;
  filter: blur(80px);
}

.category-hero--personal .category-hero__bg-glow--2 {
  background: radial-gradient(circle, #D97706 0%, transparent 70%);
  opacity: 0.07;
  width: 350px;
  height: 350px;
  bottom: -120px;
  left: -80px;
  filter: blur(60px);
}

/* Hide dot grid — replaced by the map SVG texture */
.category-hero--personal .category-hero__bg-dots {
  display: none;
}

/* Badge: amber label */
.category-hero--personal .category-hero__badge {
  color: #FCD34D;
}

.category-hero--personal .category-hero__badge-dot {
  background: #F59E0B;
  box-shadow: 0 0 6px #F59E0B;
}

/* Title: shimmer gold-to-white gradient */
.category-hero--personal .category-hero__title {
  background: linear-gradient(
    120deg,
    #FFFFFF 0%,
    #FFFFFF 30%,
    #FCD34D 50%,
    #FFFFFF 70%,
    #FFFFFF 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-title-up 0.55s ease 0.2s both, personal-shimmer 4s linear 1s infinite;
}

/* Count pill: amber tint */
.category-hero--personal .category-hero__count {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
  color: rgba(255, 255, 255, 0.8);
}

.category-hero--personal .category-hero__count:hover {
  background: rgba(245, 158, 11, 0.22);
  color: #FCD34D;
}

/* ── Personal visual graphic ────────────────────────────────────────────── */

.category-hero__personal-graphic {
  position: relative;
  width: 100%;
  max-width: 360px;
  animation: personal-float 8s ease-in-out infinite;
}

.personal-map {
  width: 100%;
  height: auto;
  color: #F59E0B;
  filter: drop-shadow(0 0 18px rgba(245, 158, 11, 0.25));
}

/* Outer dashed orbit: slow rotation */
.personal-map circle:first-child {
  transform-origin: 170px 150px;
  animation: personal-spin-slow 30s linear infinite;
}

/* Pulse rings on the center avatar */
.personal-pulse {
  transform-origin: 170px 150px;
  animation: personal-pulse-ring 3.5s ease-out infinite;
}

.personal-pulse--2 {
  animation-delay: -1.75s;
  animation-duration: 4.5s;
}

/* ── Floating identity badges ───────────────────────────────────────────── */

.personal-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(10, 8, 4, 0.75);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 9999px;
  padding: 6px 14px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  animation: personal-badge-float ease-in-out infinite;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.12), inset 0 1px 0 rgba(255,255,255,0.06);
}

.personal-badge__icon {
  color: #F59E0B;
  font-size: 0.7rem;
  line-height: 1;
}

.personal-badge--1 {
  top: 6%;
  right: 0;
  animation-duration: 5.5s;
  animation-delay: 0s;
}

.personal-badge--2 {
  bottom: 24%;
  left: -8px;
  animation-duration: 6.5s;
  animation-delay: -2.2s;
}

.personal-badge--3 {
  bottom: 6%;
  right: 10%;
  animation-duration: 5s;
  animation-delay: -1.1s;
}

/* ── Beauty body-class overrides (keep existing selectors working) ────────── */

/* ======================================================================
   ALL CATEGORY PAGES — 3-column grid, no sidebar
   Applied globally; beauty block below overrides aesthetics for beauty only
   ====================================================================== */

/* Layout: full-width, sidebar hidden */
body.category .blog-layout              { display: block; }
body.category .blog-layout__sidebar     { display: none !important; }
body.category .blog-layout__main        { width: 100%; max-width: 100%; }

/* 3-col grid */
body.category .posts-grid--2col {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  body.category .posts-grid--2col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  body.category .posts-grid--2col { grid-template-columns: 1fr; }
}

/* Card: flex column so image + content stack */
body.category .post-card {
  display: flex;
  flex-direction: column;
}

/* Card image: fixed 210px height — works reliably in flex/grid */
body.category .post-card__image {
  display: block;
  height: 210px;
  aspect-ratio: unset;
  overflow: hidden;
  flex-shrink: 0;
}
body.category .post-card__img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body.category .post-card:hover .post-card__img { transform: scale(1.06); }

/* Badge row: above title in card content */
body.category .post-card__badges {
  margin-bottom: 0.75rem;
}
body.category .post-card__badges .category-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: flex-start;
}
body.category .post-card__badges .category-badge {
  display: inline-block !important;
  width: auto !important;
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Section spacing */
body.category .container {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

/* ======================================================================
   BEAUTY MAGAZINE REDESIGN
   EN slug: body.category-beauty  |  VI slugs: body.category-lam-dep etc.
   ====================================================================== */

/* ── Shared selector shorthand (used repeatedly below) ─────────────── */
/* Applies to: beauty (EN), lam-dep, trang-diem, cham-soc-toc,
   lam-dep-diy, lam-dep-tu-ben-trong, song-xanh-thuan-chay (VI) */

/* ── 1. EN "beauty" slug: light warm background ─────────────────────── */
body[class*="category-beauty"],
body[class*="category-beauty"] .site-content,
body[class*="category-beauty"] main {
  background: #FFFBF7;
  color: #1F1217;
}

/* ── 2. EN beauty hero: inherit new dark beauty variant ─────────────── */
body[class*="category-beauty"] .category-hero__breadcrumbs .breadcrumbs__item,
body[class*="category-beauty"] .category-hero__breadcrumbs .breadcrumbs__link,
body[class*="category-beauty"] .category-hero__breadcrumbs .breadcrumbs__separator {
  color: rgba(255,255,255,0.55);
}
body[class*="category-beauty"] .category-hero__breadcrumbs .breadcrumbs__item--current {
  color: rgba(255,255,255,0.85);
}

/* ── 3. Badge fix: force white text + rose gradient on ALL beauty slugs ─ */
body[class*="category-beauty"]              .category-badge,
body[class*="category-lam-dep"]             .category-badge,
body[class*="category-trang-diem"]          .category-badge,
body[class*="category-cham-soc-toc"]        .category-badge,
body[class*="category-lam-dep-diy"]         .category-badge,
body[class*="category-lam-dep-tu-ben-trong"] .category-badge,
body[class*="category-song-xanh-thuan-chay"] .category-badge {
  color: #fff !important;
  background: linear-gradient(135deg, #E11D48 0%, #FB7185 100%) !important;
  border: none;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  transition: opacity .2s, transform .2s;
}
body[class*="category-beauty"]              .category-badge:hover,
body[class*="category-lam-dep"]             .category-badge:hover,
body[class*="category-trang-diem"]          .category-badge:hover,
body[class*="category-cham-soc-toc"]        .category-badge:hover,
body[class*="category-lam-dep-diy"]         .category-badge:hover,
body[class*="category-lam-dep-tu-ben-trong"] .category-badge:hover,
body[class*="category-song-xanh-thuan-chay"] .category-badge:hover {
  color: #fff !important;
  opacity: .88;
  transform: translateY(-2px);
}

/* ── 4. Full-width layout: hide sidebar, 3-col grid ─────────────────── */
body[class*="category-beauty"]              .blog-layout,
body[class*="category-lam-dep"]             .blog-layout,
body[class*="category-trang-diem"]          .blog-layout,
body[class*="category-cham-soc-toc"]        .blog-layout,
body[class*="category-lam-dep-diy"]         .blog-layout,
body[class*="category-lam-dep-tu-ben-trong"] .blog-layout,
body[class*="category-song-xanh-thuan-chay"] .blog-layout { display: block; }

body[class*="category-beauty"]              .blog-layout__sidebar,
body[class*="category-lam-dep"]             .blog-layout__sidebar,
body[class*="category-trang-diem"]          .blog-layout__sidebar,
body[class*="category-cham-soc-toc"]        .blog-layout__sidebar,
body[class*="category-lam-dep-diy"]         .blog-layout__sidebar,
body[class*="category-lam-dep-tu-ben-trong"] .blog-layout__sidebar,
body[class*="category-song-xanh-thuan-chay"] .blog-layout__sidebar { display: none !important; }

body[class*="category-beauty"]              .blog-layout__main,
body[class*="category-lam-dep"]             .blog-layout__main,
body[class*="category-trang-diem"]          .blog-layout__main,
body[class*="category-cham-soc-toc"]        .blog-layout__main,
body[class*="category-lam-dep-diy"]         .blog-layout__main,
body[class*="category-lam-dep-tu-ben-trong"] .blog-layout__main,
body[class*="category-song-xanh-thuan-chay"] .blog-layout__main { width: 100%; max-width: 100%; }

/* 3-column grid for desktop */
body[class*="category-beauty"]              .posts-grid--2col,
body[class*="category-lam-dep"]             .posts-grid--2col,
body[class*="category-trang-diem"]          .posts-grid--2col,
body[class*="category-cham-soc-toc"]        .posts-grid--2col,
body[class*="category-lam-dep-diy"]         .posts-grid--2col,
body[class*="category-lam-dep-tu-ben-trong"] .posts-grid--2col,
body[class*="category-song-xanh-thuan-chay"] .posts-grid--2col {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  body[class*="category-beauty"]              .posts-grid--2col,
  body[class*="category-lam-dep"]             .posts-grid--2col,
  body[class*="category-trang-diem"]          .posts-grid--2col,
  body[class*="category-cham-soc-toc"]        .posts-grid--2col,
  body[class*="category-lam-dep-diy"]         .posts-grid--2col,
  body[class*="category-lam-dep-tu-ben-trong"] .posts-grid--2col,
  body[class*="category-song-xanh-thuan-chay"] .posts-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  body[class*="category-beauty"]              .posts-grid--2col,
  body[class*="category-lam-dep"]             .posts-grid--2col,
  body[class*="category-trang-diem"]          .posts-grid--2col,
  body[class*="category-cham-soc-toc"]        .posts-grid--2col,
  body[class*="category-lam-dep-diy"]         .posts-grid--2col,
  body[class*="category-lam-dep-tu-ben-trong"] .posts-grid--2col,
  body[class*="category-song-xanh-thuan-chay"] .posts-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* ── 5. Magazine card redesign ───────────────────────────────────────── */
body[class*="category-beauty"]              .post-card,
body[class*="category-lam-dep"]             .post-card,
body[class*="category-trang-diem"]          .post-card,
body[class*="category-cham-soc-toc"]        .post-card,
body[class*="category-lam-dep-diy"]         .post-card,
body[class*="category-lam-dep-tu-ben-trong"] .post-card,
body[class*="category-song-xanh-thuan-chay"] .post-card {
  background: #fff;
  border: 1px solid rgba(225, 29, 72, .1);
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(225, 29, 72, .05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94),
              box-shadow .35s cubic-bezier(.25,.46,.45,.94),
              border-color .35s;
}
body[class*="category-beauty"]              .post-card:hover,
body[class*="category-lam-dep"]             .post-card:hover,
body[class*="category-trang-diem"]          .post-card:hover,
body[class*="category-cham-soc-toc"]        .post-card:hover,
body[class*="category-lam-dep-diy"]         .post-card:hover,
body[class*="category-lam-dep-tu-ben-trong"] .post-card:hover,
body[class*="category-song-xanh-thuan-chay"] .post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(225, 29, 72, .14);
  border-color: rgba(225, 29, 72, .22);
}

/* Card image area: fixed 210px, no aspect-ratio conflict, no dark background */
body[class*="category-beauty"]              .post-card__image,
body[class*="category-lam-dep"]             .post-card__image,
body[class*="category-trang-diem"]          .post-card__image,
body[class*="category-cham-soc-toc"]        .post-card__image,
body[class*="category-lam-dep-diy"]         .post-card__image,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__image,
body[class*="category-song-xanh-thuan-chay"] .post-card__image {
  display: block;
  height: 210px;
  aspect-ratio: unset;
  overflow: hidden;
  border-radius: 0;
  flex-shrink: 0;
  background: #fce7f3;
}
body[class*="category-beauty"]              .post-card__img,
body[class*="category-lam-dep"]             .post-card__img,
body[class*="category-trang-diem"]          .post-card__img,
body[class*="category-cham-soc-toc"]        .post-card__img,
body[class*="category-lam-dep-diy"]         .post-card__img,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__img,
body[class*="category-song-xanh-thuan-chay"] .post-card__img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
body[class*="category-beauty"]              .post-card:hover .post-card__img,
body[class*="category-lam-dep"]             .post-card:hover .post-card__img,
body[class*="category-trang-diem"]          .post-card:hover .post-card__img,
body[class*="category-cham-soc-toc"]        .post-card:hover .post-card__img,
body[class*="category-lam-dep-diy"]         .post-card:hover .post-card__img,
body[class*="category-lam-dep-tu-ben-trong"] .post-card:hover .post-card__img,
body[class*="category-song-xanh-thuan-chay"] .post-card:hover .post-card__img { transform: scale(1.06); }

/* Card content */
body[class*="category-beauty"]              .post-card__content,
body[class*="category-lam-dep"]             .post-card__content,
body[class*="category-trang-diem"]          .post-card__content,
body[class*="category-cham-soc-toc"]        .post-card__content,
body[class*="category-lam-dep-diy"]         .post-card__content,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__content,
body[class*="category-song-xanh-thuan-chay"] .post-card__content {
  background: #fff;
  padding: 1.375rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Badge row — always in card content, above the title */
body[class*="category-beauty"]              .post-card__badges,
body[class*="category-lam-dep"]             .post-card__badges,
body[class*="category-trang-diem"]          .post-card__badges,
body[class*="category-cham-soc-toc"]        .post-card__badges,
body[class*="category-lam-dep-diy"]         .post-card__badges,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__badges,
body[class*="category-song-xanh-thuan-chay"] .post-card__badges { margin-bottom: .75rem; }

body[class*="category-beauty"]              .post-card__badges .category-badges,
body[class*="category-lam-dep"]             .post-card__badges .category-badges,
body[class*="category-trang-diem"]          .post-card__badges .category-badges,
body[class*="category-cham-soc-toc"]        .post-card__badges .category-badges,
body[class*="category-lam-dep-diy"]         .post-card__badges .category-badges,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__badges .category-badges,
body[class*="category-song-xanh-thuan-chay"] .post-card__badges .category-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: flex-start;
}

/* Enforce small pill size — never grow or stretch */
body[class*="category-beauty"]              .post-card__badges .category-badge,
body[class*="category-lam-dep"]             .post-card__badges .category-badge,
body[class*="category-trang-diem"]          .post-card__badges .category-badge,
body[class*="category-cham-soc-toc"]        .post-card__badges .category-badge,
body[class*="category-lam-dep-diy"]         .post-card__badges .category-badge,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__badges .category-badge,
body[class*="category-song-xanh-thuan-chay"] .post-card__badges .category-badge {
  display: inline-block !important;
  width: auto !important;
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
}

/* Card title */
body[class*="category-beauty"]              .post-card__title,
body[class*="category-lam-dep"]             .post-card__title,
body[class*="category-trang-diem"]          .post-card__title,
body[class*="category-cham-soc-toc"]        .post-card__title,
body[class*="category-lam-dep-diy"]         .post-card__title,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__title,
body[class*="category-song-xanh-thuan-chay"] .post-card__title {
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: .6rem;
  flex: 1;
}
body[class*="category-beauty"]              .post-card__title a,
body[class*="category-lam-dep"]             .post-card__title a,
body[class*="category-trang-diem"]          .post-card__title a,
body[class*="category-cham-soc-toc"]        .post-card__title a,
body[class*="category-lam-dep-diy"]         .post-card__title a,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__title a,
body[class*="category-song-xanh-thuan-chay"] .post-card__title a { color: #1F1217; text-decoration: none; }
body[class*="category-beauty"]              .post-card__title a:hover,
body[class*="category-lam-dep"]             .post-card__title a:hover,
body[class*="category-trang-diem"]          .post-card__title a:hover,
body[class*="category-cham-soc-toc"]        .post-card__title a:hover,
body[class*="category-lam-dep-diy"]         .post-card__title a:hover,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__title a:hover,
body[class*="category-song-xanh-thuan-chay"] .post-card__title a:hover { color: #E11D48; }

/* Card excerpt */
body[class*="category-beauty"]              .post-card__excerpt,
body[class*="category-lam-dep"]             .post-card__excerpt,
body[class*="category-trang-diem"]          .post-card__excerpt,
body[class*="category-cham-soc-toc"]        .post-card__excerpt,
body[class*="category-lam-dep-diy"]         .post-card__excerpt,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__excerpt,
body[class*="category-song-xanh-thuan-chay"] .post-card__excerpt {
  color: #7A6A6E;
  font-size: .875rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card meta */
body[class*="category-beauty"]              .post-card__meta,
body[class*="category-lam-dep"]             .post-card__meta,
body[class*="category-trang-diem"]          .post-card__meta,
body[class*="category-cham-soc-toc"]        .post-card__meta,
body[class*="category-lam-dep-diy"]         .post-card__meta,
body[class*="category-lam-dep-tu-ben-trong"] .post-card__meta,
body[class*="category-song-xanh-thuan-chay"] .post-card__meta {
  color: #9B8A8E;
  font-size: .78rem;
  border-top: 1px solid #FCE7F3;
  padding-top: .875rem;
  margin-top: auto;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── 6. No-image card: rose top accent strip ─────────────────────────── */
body[class*="category-beauty"]              .post-card--no-image,
body[class*="category-lam-dep"]             .post-card--no-image,
body[class*="category-trang-diem"]          .post-card--no-image,
body[class*="category-cham-soc-toc"]        .post-card--no-image,
body[class*="category-lam-dep-diy"]         .post-card--no-image,
body[class*="category-lam-dep-tu-ben-trong"] .post-card--no-image,
body[class*="category-song-xanh-thuan-chay"] .post-card--no-image {
  border-top: 4px solid #E11D48;
  background: linear-gradient(180deg, rgba(254,242,248,.45) 0%, #fff 60%);
}

/* ── 7. Section spacing ──────────────────────────────────────────────── */
body[class*="category-beauty"]              .container,
body[class*="category-lam-dep"]             .container,
body[class*="category-trang-diem"]          .container,
body[class*="category-cham-soc-toc"]        .container,
body[class*="category-lam-dep-diy"]         .container,
body[class*="category-lam-dep-tu-ben-trong"] .container,
body[class*="category-song-xanh-thuan-chay"] .container {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}
