/*
Theme Name: StarZone
Theme URI: https://dev.com.vn
Author: dev.com.vn
Author URI: https://dev.com.vn
Description: StarZone - Từ điển Ngôi Sao - Theme WordPress chuyên nghiệp
Version: 1.0.3
Text Domain: starzone
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   VARIABLES
============================================= */
:root {
  --sz-pink:        #e8387a;
  --sz-pink-light:  #f472a8;
  --sz-pink-pale:   #fff0f6;
  --sz-pink-mid:    #fcd0e3;
  --sz-gold:        #f5a623;
  --sz-gold-light:  #fdf0d5;
  --sz-purple:      #7c3aed;
  --sz-purple-pale: #f5f0ff;
  --sz-teal:        #0d9488;
  --sz-teal-pale:   #f0fdfb;
  --sz-blue:        #1d6aff;
  --sz-blue-pale:   #eff4ff;
  --sz-red:         #e5304a;
  --sz-dark:        #1a0a12;
  --sz-text:        #1a0a12;
  --sz-text2:       #6b4057;
  --sz-text3:       #a07088;
  --sz-border:      #f0d0df;
  --sz-bg:          #fffafe;
  --sz-shadow:      0 4px 24px rgba(232,56,122,0.08);
  --sz-shadow-hover:0 16px 48px rgba(232,56,122,0.14);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--sz-bg);
  color: var(--sz-text);
  line-height: 1.65;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--sz-pink); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--sz-dark); }
ul,ol { list-style: none; }

/* =============================================
   CONTAINER — full width sections use this inside
============================================= */
.sz-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Every full-width section stretches 100vw */
.sz-section-full {
  width: 100%;
}

/* =============================================
   HEADER
============================================= */
#sz-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(255,250,254,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sz-border);
}
.sz-nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.sz-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--sz-pink);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.sz-logo span { color: var(--sz-gold); }

/* Primary nav */
#sz-primary-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex: 1;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
#sz-primary-menu > li { position: relative; }
#sz-primary-menu > li > a {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sz-text2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  gap: 4px;
  transition: all 0.18s;
  text-decoration: none;
}
#sz-primary-menu > li > a:hover,
#sz-primary-menu > li.current-menu-item > a,
#sz-primary-menu > li.current-menu-ancestor > a {
  color: var(--sz-pink);
  border-bottom-color: var(--sz-pink);
}
/* Dropdown level 2 */
#sz-primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--sz-border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  list-style: none;
  padding: 8px 0;
  z-index: 200;
  display: none;
  margin: 0;
}
#sz-primary-menu li:hover > .sub-menu { display: block; }
#sz-primary-menu .sub-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--sz-text2);
  white-space: nowrap;
  transition: all 0.15s;
  text-decoration: none;
}
#sz-primary-menu .sub-menu li a:hover {
  background: var(--sz-pink-pale);
  color: var(--sz-pink);
  padding-left: 22px;
}
/* Level 3 */
#sz-primary-menu .sub-menu .sub-menu {
  top: 0; left: 100%;
}
#sz-primary-menu li.menu-item-has-children > a::after {
  content: '▾'; font-size: 10px; opacity: 0.5;
}

.sz-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.sz-search-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fdf0f7;
  border: 1px solid var(--sz-border);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--sz-text3);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.sz-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sz-pink);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.sz-btn:hover { background: #c82060; color: #fff !important; }
.sz-btn.outline {
  background: transparent;
  border: 1.5px solid var(--sz-border);
  color: var(--sz-text2) !important;
}
.sz-btn.outline:hover { border-color: var(--sz-pink); color: var(--sz-pink) !important; }

/* Hamburger */
.sz-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
}
.sz-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sz-text);
  border-radius: 2px;
}

/* =============================================
   MOBILE OVERLAY NAV
============================================= */
#sz-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}
#sz-mobile-nav.open { display: block; }
.sz-mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sz-border);
}
.sz-mobile-close {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--sz-text3);
  line-height: 1;
}
#sz-mobile-menu { list-style: none; margin: 0; padding: 0; }
#sz-mobile-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--sz-dark);
  border-bottom: 1px solid var(--sz-border);
  text-decoration: none;
}
#sz-mobile-menu .sub-menu {
  list-style: none;
  display: none;
  background: var(--sz-bg);
  border-radius: 10px;
  padding: 6px 14px;
  margin: 4px 0;
}
#sz-mobile-menu .sub-menu.open { display: block; }
#sz-mobile-menu .sub-menu li a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--sz-text2);
  border-bottom: 1px solid var(--sz-border);
  text-decoration: none;
}
#sz-mobile-menu .sub-menu li:last-child a { border-bottom: none; }

/* =============================================
   MOBILE BOTTOM NAV
============================================= */
#sz-mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--sz-border);
  z-index: 888;
  padding: 6px 0 env(safe-area-inset-bottom, 0px);
}
.sz-bottom-nav-items {
  display: flex;
  justify-content: space-around;
}
.sz-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  font-size: 10px;
  color: var(--sz-text3);
  font-weight: 500;
  text-decoration: none;
  flex: 1;
}
.sz-bottom-nav-item .icon { font-size: 20px; line-height: 1; }
.sz-bottom-nav-item.active,
.sz-bottom-nav-item:hover { color: var(--sz-pink); }

/* =============================================
   CHAT FLOAT
============================================= */
.sz-chat-float {
  position: fixed;
  bottom: 88px; right: 20px;
  z-index: 700;
  background: var(--sz-pink);
  color: #fff;
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(232,56,122,0.4);
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}
.sz-chat-float:hover { transform: scale(1.1); color: #fff; }

/* =============================================
   BREADCRUMB
============================================= */
.sz-breadcrumb {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--sz-border);
  padding: 10px 0;
}
.sz-breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--sz-text3);
  flex-wrap: wrap;
}
.sz-breadcrumb-inner a { color: var(--sz-text3); text-decoration: none; }
.sz-breadcrumb-inner a:hover { color: var(--sz-pink); }
.sz-breadcrumb-inner .sep { opacity: 0.4; }
.sz-breadcrumb-inner .current { color: var(--sz-pink); font-weight: 600; }

/* =============================================
   HERO — full width, no container constraint
============================================= */
.sz-hero {
  width: 100%;
  background: linear-gradient(135deg, #fff0f8 0%, #fce7f3 35%, #fff8e1 70%, #f5f0ff 100%);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sz-hero-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}
.sz-hero-deco.d1 { width: 420px; height: 420px; background: var(--sz-pink); top: -160px; right: -100px; }
.sz-hero-deco.d2 { width: 300px; height: 300px; background: var(--sz-gold); bottom: -120px; left: -80px; }
.sz-hero-deco.d3 { width: 200px; height: 200px; background: var(--sz-purple); top: 20px; left: 32%; }
.sz-hero > .sz-container { position: relative; z-index: 1; }

.sz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--sz-border);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  color: var(--sz-pink);
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.sz-hero h1 {
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 800;
  color: var(--sz-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.sz-hero h1 em { color: var(--sz-pink); font-style: italic; }
.sz-hero > .sz-container > p {
  font-size: 16px;
  color: var(--sz-text2);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* Search box */
.sz-search-box {
  display: flex;
  max-width: 640px;
  margin: 0 auto 1.4rem;
  background: #fff;
  border-radius: 60px;
  border: 2px solid var(--sz-pink);
  box-shadow: 0 8px 40px rgba(232,56,122,0.15);
  overflow: hidden;
}
.sz-search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  min-width: 0;
}
.sz-search-box select {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  color: var(--sz-text2);
  padding: 0 12px;
  border-left: 1px solid var(--sz-border);
  cursor: pointer;
  flex-shrink: 0;
}
.sz-search-box button {
  background: var(--sz-pink);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
  cursor: pointer;
}
.sz-search-box button:hover { background: #c82060; }

/* Hero tags */
.sz-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
}
.sz-hero-tag {
  background: #fff;
  border: 1px solid var(--sz-border);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 13px;
  color: var(--sz-text2);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.sz-hero-tag:hover { background: var(--sz-pink); color: #fff; border-color: var(--sz-pink); }

/* Hero stats */
.sz-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--sz-border);
  flex-wrap: wrap;
}
.sz-stat-num { font-size: 26px; font-weight: 800; color: var(--sz-pink); }
.sz-stat-label { font-size: 12px; color: var(--sz-text3); margin-top: 2px; }

/* =============================================
   SECTION HELPERS
============================================= */
.sz-section { padding: 60px 0; width: 100%; }
.sz-section-inner { /* used inside dark sections */ }

.sz-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 12px;
  flex-wrap: wrap;
}
.sz-section-header h2 { font-size: 24px; font-weight: 800; }
.sz-section-header h2 span { color: var(--sz-pink); }
.sz-section-header p { font-size: 13px; color: var(--sz-text3); margin-top: 4px; }
.sz-see-all {
  font-size: 13px;
  color: var(--sz-pink);
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.sz-see-all:hover { text-decoration: underline; color: var(--sz-pink); }

/* =============================================
   CATEGORIES BAR — dark bg, full width
============================================= */
.sz-cats-section {
  width: 100%;
  background: #1a0a12;
  padding: 28px 0;
}
.sz-cats-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.sz-cats-grid::-webkit-scrollbar { display: none; }
.sz-cat-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s;
  border: 1.5px solid rgba(255,255,255,0.1);
  min-width: 88px;
  text-decoration: none;
}
.sz-cat-card:hover { transform: translateY(-3px); color: #fff; }
.sz-cat-icon { font-size: 24px; }
.sz-cat-name { font-size: 11px; font-weight: 600; color: #fff; text-align: center; }
.sz-cat-count { font-size: 10px; color: rgba(255,255,255,0.45); }

/* =============================================
   STAR CARDS GRID
============================================= */
.sz-stars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sz-star-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--sz-border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: var(--sz-shadow);
}
.sz-star-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sz-shadow-hover);
  border-color: var(--sz-pink-light);
}
.sz-star-cover {
  width: 100%;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.sz-star-cover img { width: 100%; height: 100%; object-fit: cover; }
.sz-star-avatar-text {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}
.sz-star-rank {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.55); color: #fff;
  border-radius: 6px; padding: 2px 8px;
  font-size: 11px; font-weight: 700;
}
.sz-star-body { padding: 12px 14px; }
.sz-star-name { font-size: 14px; font-weight: 600; color: var(--sz-dark); }
.sz-star-cat { font-size: 11px; color: var(--sz-text3); margin-top: 3px; }
.sz-star-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--sz-border);
}
.sz-star-fans { font-size: 11px; font-weight: 600; color: var(--sz-pink); }
.sz-star-nation { font-size: 11px; color: var(--sz-text3); }
.sz-detail-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  background: var(--sz-pink);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.sz-detail-btn:hover { background: #c82060; color: #fff; }
.sz-tag-pill {
  display: inline-block;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
}

/* =============================================
   ALBUM GRID
============================================= */
.sz-albums-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.sz-album-card { cursor: pointer; transition: transform 0.2s; text-decoration: none; color: inherit; }
.sz-album-card:hover { transform: translateY(-3px); }
.sz-album-cover {
  width: 100%; aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 8px;
  border: 1px solid var(--sz-border);
  overflow: hidden;
  font-weight: 800;
}
.sz-album-title { font-size: 13px; font-weight: 600; color: var(--sz-dark); }
.sz-album-star { font-size: 11px; color: var(--sz-text3); margin-top: 2px; }

/* =============================================
   FAN CLUB GRID
============================================= */
.sz-fanclub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sz-fc-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--sz-border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--sz-shadow);
}
.sz-fc-card:hover { transform: translateY(-3px); border-color: var(--sz-pink-light); }
.sz-fc-banner { height: 80px; display: flex; align-items: center; justify-content: center; font-size: 32px; overflow: hidden; }
.sz-fc-banner img { width: 100%; height: 100%; object-fit: cover; }
.sz-fc-body { padding: 14px; }
.sz-fc-star { font-size: 14px; font-weight: 700; color: var(--sz-dark); }
.sz-fc-name { font-size: 12px; color: var(--sz-text3); margin-top: 2px; }
.sz-fc-stats { display: flex; gap: 10px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--sz-border); }
.sz-fc-s { font-size: 11px; color: var(--sz-text3); }
.sz-fc-s strong { color: var(--sz-dark); display: block; font-size: 13px; }
.sz-fc-join {
  width: 100%; margin-top: 12px; padding: 8px;
  background: var(--sz-pink-pale);
  border: 1.5px solid var(--sz-pink-mid);
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  color: var(--sz-pink);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  display: block; text-align: center; text-decoration: none;
}
.sz-fc-join:hover { background: var(--sz-pink); color: #fff; }

/* =============================================
   EVENTS — dark bg
============================================= */
.sz-events-section { width: 100%; background: #1a0a12; padding: 60px 0; }
.sz-events-section .sz-section-header h2 { color: #fff; }
.sz-events-section .sz-section-header p { color: rgba(255,255,255,0.5); }
.sz-events-section .sz-see-all { color: var(--sz-pink-light); }
.sz-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sz-event-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.sz-event-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
.sz-event-img { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 48px; position: relative; overflow: hidden; }
.sz-event-img img { width: 100%; height: 100%; object-fit: cover; }
.sz-event-date-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--sz-pink); color: #fff;
  border-radius: 8px; padding: 5px 10px;
  font-size: 11px; font-weight: 700;
}
.sz-event-body { padding: 14px; }
.sz-event-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.sz-event-meta { font-size: 12px; color: rgba(255,255,255,0.5); }
.sz-event-price { margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--sz-gold); }

/* =============================================
   MERCH GRID
============================================= */
.sz-merch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.sz-merch-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--sz-border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--sz-shadow);
}
.sz-merch-card:hover { transform: translateY(-4px); border-color: var(--sz-pink-light); box-shadow: var(--sz-shadow-hover); }
.sz-merch-img { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 40px; position: relative; overflow: hidden; }
.sz-merch-img img { width: 100%; height: 100%; object-fit: cover; }
.sz-merch-body { padding: 10px 12px 12px; }
.sz-merch-name { font-size: 13px; font-weight: 600; color: var(--sz-dark); }
.sz-merch-price { font-size: 14px; font-weight: 700; color: var(--sz-pink); margin-top: 6px; }
.sz-merch-old { font-size: 11px; color: var(--sz-text3); text-decoration: line-through; }
.sz-merch-btn {
  width: 100%; margin-top: 10px; padding: 8px;
  background: var(--sz-pink); color: #fff; border: none;
  border-radius: 50px; font-size: 12px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: background 0.15s;
  display: block; text-align: center; text-decoration: none;
}
.sz-merch-btn:hover { background: #c82060; color: #fff; }

/* =============================================
   SERVICES — dark bg
============================================= */
.sz-services-section { width: 100%; background: #1a0a12; padding: 60px 0; }
.sz-services-section .sz-section-header h2 { color: #fff; }
.sz-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sz-svc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.2s;
}
.sz-svc-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.sz-svc-icon { font-size: 34px; margin-bottom: 12px; }
.sz-svc-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sz-svc-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 14px; }
.sz-svc-price { font-size: 14px; font-weight: 700; color: var(--sz-gold); margin-bottom: 14px; }
.sz-svc-btn {
  display: block; width: 100%; padding: 10px;
  background: var(--sz-pink); color: #fff; border: none;
  border-radius: 50px; font-size: 13px; font-weight: 600;
  text-align: center; cursor: pointer; font-family: inherit;
  transition: background 0.15s; text-decoration: none;
}
.sz-svc-btn:hover { background: #c82060; color: #fff; }

/* =============================================
   NEWS GRID
============================================= */
.sz-news-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.5rem; }
.sz-news-main-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 60px; border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.sz-news-main-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.sz-news-main-title { font-size: 16px; font-weight: 700; color: var(--sz-dark); line-height: 1.4; }
.sz-news-main-meta { font-size: 12px; color: var(--sz-text3); margin-top: 6px; }
.sz-news-cat-badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 10px; font-weight: 700; margin-bottom: 8px; }
.sz-news-side { display: flex; flex-direction: column; gap: 10px; }
.sz-news-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px; background: #fff;
  border-radius: 12px; border: 1px solid var(--sz-border);
  cursor: pointer; transition: all 0.18s; text-decoration: none; color: inherit;
}
.sz-news-item:hover { border-color: var(--sz-pink-light); box-shadow: var(--sz-shadow); }
.sz-news-thumb { width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; overflow: hidden; }
.sz-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sz-news-item-title { font-size: 13px; font-weight: 600; color: var(--sz-dark); line-height: 1.4; }
.sz-news-item-meta { font-size: 11px; color: var(--sz-text3); margin-top: 4px; }

/* =============================================
   TRENDING
============================================= */
.sz-trending-section { width: 100%; background: linear-gradient(135deg,#fff8fd,#fff0f6); padding: 60px 0; }
.sz-trending-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; }
.sz-trending-list { display: flex; flex-direction: column; gap: 10px; }
.sz-trending-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 14px; border: 1px solid var(--sz-border);
  padding: 12px 14px; cursor: pointer; transition: all 0.18s; text-decoration: none; color: inherit;
}
.sz-trending-item:hover { border-color: var(--sz-pink-light); transform: translateX(4px); }
.sz-trending-num { font-size: 20px; font-weight: 900; color: var(--sz-pink-mid); min-width: 30px; font-style: italic; }
.sz-trending-num.top { color: var(--sz-pink); }
.sz-trending-info { flex: 1; min-width: 0; }
.sz-trending-name { font-size: 14px; font-weight: 600; color: var(--sz-dark); }
.sz-trending-sub { font-size: 11px; color: var(--sz-text3); margin-top: 2px; }
.sz-trending-delta { font-size: 12px; font-weight: 700; flex-shrink: 0; }
.sz-trending-delta.up { color: #16a34a; }
.sz-trending-delta.down { color: var(--sz-red); }
.sz-hot-side { display: flex; flex-direction: column; gap: 12px; }
.sz-widget {
  background: #fff;
  border: 1px solid var(--sz-border);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: var(--sz-shadow);
}
.sz-widget h3 {
  font-size: 14px; font-weight: 700; color: var(--sz-dark);
  margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 2px solid var(--sz-border);
  display: flex; align-items: center; gap: 6px;
}

/* =============================================
   NEWSLETTER
============================================= */
.sz-newsletter {
  width: 100%;
  background: linear-gradient(135deg, var(--sz-pink), #c82060);
  padding: 56px 24px;
  text-align: center;
}
.sz-newsletter h2 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.sz-newsletter p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 1.8rem; }
.sz-newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 10px;
}
.sz-newsletter-form input {
  flex: 1; border: none; outline: none;
  padding: 13px 18px; border-radius: 50px;
  font-size: 14px; font-family: inherit;
  min-width: 0;
}
.sz-newsletter-form button {
  background: #1a0a12; color: #fff; border: none;
  border-radius: 50px; padding: 13px 24px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: inherit; white-space: nowrap;
  transition: background 0.2s; flex-shrink: 0;
}
.sz-newsletter-form button:hover { background: #000; }

/* =============================================
   FOOTER
============================================= */
#sz-footer { width: 100%; background: #1a0a12; color: rgba(255,255,255,0.7); padding: 48px 0 0; }
.sz-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px 2.5rem;
}
.sz-footer-logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; display: block; }
.sz-footer-logo span { color: var(--sz-gold); }
.sz-footer-about { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; }
.sz-footer-socials { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.sz-soc-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase;
  cursor: pointer; transition: background 0.15s; text-decoration: none;
}
.sz-soc-btn:hover { background: var(--sz-pink); color: #fff; }
.sz-footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.sz-footer-col ul { list-style: none; margin: 0; padding: 0; }
.sz-footer-col ul li { margin-bottom: 8px; }
.sz-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.sz-footer-col ul li a:hover { color: var(--sz-pink-light); }
.sz-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.sz-footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.sz-footer-links { display: flex; gap: 14px; }
.sz-footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }
.sz-footer-links a:hover { color: var(--sz-pink-light); }

/* =============================================
   LAYOUT: CONTENT + SIDEBAR
============================================= */
.sz-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  align-items: flex-start;
  width: 100%;
}
.sz-sidebar { position: sticky; top: 84px; }

/* Sidebar contact widget */
.sz-sidebar-contact {
  background: linear-gradient(135deg, var(--sz-pink), #c82060);
  border-radius: 16px;
  padding: 18px;
  color: #fff;
  margin-bottom: 18px;
}
.sz-sidebar-contact h3 { color: #fff; border-bottom-color: rgba(255,255,255,0.2); font-size: 14px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; gap: 6px; }
.sz-sidebar-contact-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.sz-sidebar-contact-item:last-of-type { border-bottom: none; }
.sz-sidebar-contact-icon { font-size: 16px; }
.sz-sidebar-social { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.sz-sidebar-social a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(255,255,255,0.15); border-radius: 50px; font-size: 12px; color: #fff; font-weight: 600; transition: background 0.15s; text-decoration: none; }
.sz-sidebar-social a:hover { background: rgba(255,255,255,0.28); color: #fff; }
.sz-sidebar-zalo { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border-radius: 50px; padding: 8px 14px; margin-top: 8px; font-size: 12px; font-weight: 600; color: #fff; }
.sz-cta-contact-btn { display: block; width: 100%; margin-top: 12px; padding: 11px; background: #fff; color: var(--sz-pink) !important; border: none; border-radius: 50px; font-size: 13px; font-weight: 700; text-align: center; cursor: pointer; font-family: inherit; transition: all 0.15s; text-decoration: none; }
.sz-cta-contact-btn:hover { background: #1a0a12; color: #fff !important; }

/* Price table */
.sz-price-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--sz-border); font-size: 13px; }
.sz-price-row:last-child { border-bottom: none; }
.sz-price-row .label { color: var(--sz-text2); }
.sz-price-row .value { font-weight: 700; color: var(--sz-pink); }

/* =============================================
   SINGLE CONTENT
============================================= */
.sz-single-header {
  background: linear-gradient(135deg,#fff0f8,#fce7f3);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--sz-border);
}
.sz-single-title { font-size: 24px; font-weight: 800; color: var(--sz-dark); margin-bottom: 6px; line-height: 1.3; }
.sz-single-sub { font-size: 14px; color: var(--sz-text3); }

.sz-content-section {
  background: #fff;
  border: 1px solid var(--sz-border);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--sz-shadow);
}
.sz-content-section h3 {
  font-size: 15px; font-weight: 700; color: var(--sz-dark);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--sz-border);
  display: flex; align-items: center; gap: 8px;
}
.sz-content-section h3 .icon { font-size: 17px; }

.sz-info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.sz-info-item { background: var(--sz-bg); border-radius: 10px; padding: 10px 12px; }
.sz-info-label { font-size: 10px; color: var(--sz-text3); font-weight: 600; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.sz-info-value { font-size: 14px; font-weight: 600; color: var(--sz-dark); }

/* Timeline */
.sz-tl-item { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.sz-tl-year { font-size: 12px; font-weight: 700; color: var(--sz-pink); min-width: 44px; padding-top: 2px; }
.sz-tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sz-pink); flex-shrink: 0; margin-top: 4px; }
.sz-tl-text { font-size: 13px; color: var(--sz-text2); line-height: 1.5; }

/* Gallery */
.sz-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.sz-gallery a img { border-radius: 10px; width: 100%; aspect-ratio: 1; object-fit: cover; }

/* Video */
.sz-video-wrap { border-radius: 14px; overflow: hidden; background: #000; aspect-ratio: 16/9; }
.sz-video-wrap iframe { width: 100%; height: 100%; border: none; }

/* FAQ */
.sz-faq-item { border: 1px solid var(--sz-border); border-radius: 12px; overflow: hidden; margin-bottom: 6px; }
.sz-faq-q { padding: 13px 16px; font-size: 14px; font-weight: 600; color: var(--sz-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; transition: background 0.15s; user-select: none; }
.sz-faq-q:hover { background: var(--sz-pink-pale); }
.sz-faq-q .arrow { font-size: 12px; color: var(--sz-text3); transition: transform 0.2s; flex-shrink: 0; }
.sz-faq-q.open .arrow { transform: rotate(180deg); }
.sz-faq-a { padding: 0 16px; font-size: 13px; color: var(--sz-text2); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.sz-faq-a.open { max-height: 300px; padding: 12px 16px; }

/* Related */
.sz-related { margin-top: 28px; }
.sz-related h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.sz-related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }

/* Contact form */
.sz-contact-section { background: linear-gradient(135deg,#fff0f8,var(--sz-purple-pale)); border: 1px solid var(--sz-border); border-radius: 18px; padding: 24px; margin-top: 24px; }
.sz-contact-section h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.sz-contact-section > p { font-size: 14px; color: var(--sz-text3); margin-bottom: 18px; }
.sz-contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sz-form-group { display: flex; flex-direction: column; gap: 5px; }
.sz-form-group label { font-size: 12px; font-weight: 600; color: var(--sz-text2); }
.sz-form-input { border: 1.5px solid var(--sz-border); border-radius: 10px; padding: 10px 14px; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s; background: #fff; width: 100%; }
.sz-form-input:focus { border-color: var(--sz-pink); }
.sz-form-group.full { grid-column: 1 / -1; }
.sz-form-group.full textarea { min-height: 90px; resize: vertical; }
.sz-submit-btn { margin-top: 14px; padding: 11px 28px; background: var(--sz-pink); color: #fff; border: none; border-radius: 50px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.sz-submit-btn:hover { background: #c82060; }

/* =============================================
   ARCHIVE HEADER
============================================= */
.sz-archive-header {
  width: 100%;
  background: linear-gradient(135deg,#fff0f8,#fce7f3);
  padding: 36px 0;
  border-bottom: 1px solid var(--sz-border);
}
.sz-archive-header h1 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.sz-archive-header p { font-size: 14px; color: var(--sz-text3); }
.sz-archive-search-box { display: flex; background: #fff; border: 2px solid var(--sz-border); border-radius: 50px; overflow: hidden; transition: border-color 0.2s; }
.sz-archive-search-box:focus-within { border-color: var(--sz-pink); }
.sz-archive-search-box input { flex: 1; border: none; outline: none; padding: 12px 18px; font-size: 14px; font-family: inherit; min-width: 0; }
.sz-archive-search-box button { background: var(--sz-pink); color: #fff; border: none; padding: 0 22px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; flex-shrink: 0; }

/* Filter sidebar */
.sz-filter-group { margin-bottom: 14px; }
.sz-filter-group label { font-size: 13px; font-weight: 600; color: var(--sz-dark); display: block; margin-bottom: 6px; }
.sz-filter-select { width: 100%; padding: 9px 12px; border: 1.5px solid var(--sz-border); border-radius: 10px; font-family: inherit; font-size: 13px; outline: none; transition: border-color 0.2s; background: #fff; }
.sz-filter-select:focus { border-color: var(--sz-pink); }
.sz-filter-checkboxes { display: flex; flex-direction: column; gap: 6px; }
.sz-filter-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--sz-text2); cursor: pointer; text-decoration: none; padding: 3px 0; }
.sz-filter-check:hover { color: var(--sz-pink); }
.sz-filter-apply { width: 100%; padding: 9px; background: var(--sz-pink); color: #fff; border: none; border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; margin-top: 4px; transition: background 0.15s; }
.sz-filter-apply:hover { background: #c82060; }

/* Mobile filter button */
.sz-mobile-filter-btn {
  display: none;
  position: fixed;
  bottom: 78px; right: 16px;
  z-index: 500;
  background: var(--sz-pink);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(232,56,122,0.35);
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

/* Blog post */
.sz-entry-title { font-size: 26px; font-weight: 800; color: var(--sz-dark); line-height: 1.3; margin-bottom: 10px; }
.sz-entry-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--sz-text3); align-items: center; margin-bottom: 16px; }
.sz-entry-meta a { color: var(--sz-text3); text-decoration: none; }
.sz-entry-meta a:hover { color: var(--sz-pink); }
.sz-entry-thumbnail { border-radius: 14px; overflow: hidden; margin-bottom: 20px; }
.sz-entry-content { font-size: 15px; line-height: 1.75; color: var(--sz-text); }
.sz-entry-content p { margin-bottom: 1.1em; }
.sz-entry-content h2,.sz-entry-content h3 { margin: 1.4em 0 0.6em; font-weight: 700; }
.sz-entry-content ul,.sz-entry-content ol { margin: 0.8em 0 0.8em 1.4em; list-style: revert; }
.sz-entry-content li { margin-bottom: 0.4em; }
.sz-entry-content blockquote { border-left: 3px solid var(--sz-pink); padding: 10px 18px; margin: 1em 0; background: var(--sz-pink-pale); border-radius: 0 10px 10px 0; font-style: italic; }
.sz-entry-content a { color: var(--sz-pink); }

/* Pagination */
.sz-pagination { display: flex; justify-content: center; gap: 6px; padding: 28px 0; flex-wrap: wrap; }
.sz-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--sz-border); font-size: 14px; color: var(--sz-text2); transition: all 0.15s; text-decoration: none; }
.sz-pagination .page-numbers:hover { background: var(--sz-pink-pale); border-color: var(--sz-pink); color: var(--sz-pink); }
.sz-pagination .current { background: var(--sz-pink); border-color: var(--sz-pink); color: #fff; }

/* =============================================
   STAR AVATAR
============================================= */
.sz-star-avatar-text {
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
  .sz-stars-grid { grid-template-columns: repeat(3,1fr); }
  .sz-albums-grid { grid-template-columns: repeat(4,1fr); }
  .sz-merch-grid { grid-template-columns: repeat(4,1fr); }
  .sz-footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet: 3 cols */
  .sz-stars-grid { grid-template-columns: repeat(3,1fr); }
  .sz-fanclub-grid { grid-template-columns: repeat(3,1fr); }
  .sz-albums-grid { grid-template-columns: repeat(3,1fr); }
  .sz-merch-grid { grid-template-columns: repeat(3,1fr); }
  .sz-events-grid { grid-template-columns: repeat(2,1fr); }
  .sz-services-grid { grid-template-columns: repeat(2,1fr); }
  .sz-news-grid { grid-template-columns: 1fr 1fr; }
  .sz-layout { grid-template-columns: 1fr 280px; }
}

@media (max-width: 768px) {
  /* Hide desktop nav, show hamburger */
  #sz-primary-menu,
  .sz-nav-right { display: none !important; }
  .sz-hamburger { display: flex; }

  /* Show mobile bottom nav */
  #sz-mobile-bottom-nav { display: block; }
  body { padding-bottom: 68px; }

  /* 2 columns on mobile */
  .sz-stars-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .sz-fanclub-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .sz-albums-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .sz-merch-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .sz-events-grid { grid-template-columns: 1fr; }
  .sz-services-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .sz-news-grid { grid-template-columns: 1fr; }
  .sz-related-grid { grid-template-columns: 1fr; }
  .sz-info-grid { grid-template-columns: 1fr; }
  .sz-contact-form-grid { grid-template-columns: 1fr; }
  .sz-gallery { grid-template-columns: repeat(2,1fr); }
  .sz-trending-wrap { grid-template-columns: 1fr; }

  /* Single column layout */
  .sz-layout { grid-template-columns: 1fr; padding: 20px 16px 40px; }
  .sz-sidebar { position: static; }

  /* Containers */
  .sz-container { padding-left: 16px; padding-right: 16px; }

  /* Hero */
  .sz-hero { padding: 48px 16px 40px; }
  .sz-hero h1 { font-size: 26px; }
  .sz-hero-stats { gap: 1.2rem; }
  .sz-hero-stats > div { flex: 0 0 calc(50% - 0.6rem); }

  /* Search box */
  .sz-search-box {
    flex-direction: column;
    border-radius: 16px;
    border-width: 1.5px;
  }
  .sz-search-box input { border-radius: 14px 14px 0 0; padding: 13px 16px; }
  .sz-search-box select { border-left: none; border-top: 1px solid var(--sz-border); padding: 10px 16px; width: 100%; }
  .sz-search-box button { border-radius: 0 0 14px 14px; padding: 12px; width: 100%; }

  /* Footer */
  .sz-footer-top { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 0 16px 2rem; }
  .sz-footer-brand { grid-column: 1 / -1; }
  .sz-footer-about { max-width: 100%; }
  .sz-footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px; }
  .sz-footer-links { flex-wrap: wrap; justify-content: center; }

  /* Archive layout */
  .sz-mobile-filter-btn { display: flex; }
  .sz-filter-sidebar {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: #fff;
    overflow-y: auto;
    padding: 20px;
  }
  .sz-filter-sidebar.open { display: block; }

  /* Newsletter */
  .sz-newsletter { padding: 40px 16px; }
  .sz-newsletter h2 { font-size: 22px; }
  .sz-newsletter-form { flex-direction: column; }
  .sz-newsletter-form button { border-radius: 50px; }

  /* Section padding */
  .sz-section { padding: 40px 0; }
  .sz-events-section, .sz-services-section { padding: 40px 0; }
  .sz-trending-section { padding: 40px 0; }

  /* Single title */
  .sz-single-title { font-size: 20px; }
  .sz-entry-title { font-size: 20px; }
}

/* =============================================
   FIXES v1.0.2
============================================= */

/* --- FIX: Custom Logo --- */
.sz-logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  max-height: 52px;
}
.sz-logo-img .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 1;
}
.sz-logo-img .custom-logo {
  max-height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* WordPress wraps custom logo in extra <a> — flatten it */
.sz-logo-img a { display: flex; align-items: center; }

/* --- FIX: Avatar flex-shrink (sidebar hot stars) --- */
.sz-star-avatar-text,
.sz-widget a img[style*="border-radius:50%"] {
  flex-shrink: 0 !important;
  display: block;
}

/* --- FIX: Sidebar widget rows — contain text overflow --- */
.sz-widget a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--sz-border);
  text-decoration: none;
  color: inherit;
  min-width: 0; /* allow text truncation */
}
.sz-widget a:last-child { border-bottom: none; }
.sz-widget a > div,
.sz-widget a > span.text {
  min-width: 0;
  flex: 1;
}
.sz-widget a .name,
.sz-widget a > div > div:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --- FIX: Pagination — WordPress outputs <div class="wp-pagenavi"> or nav.navigation --- */
.sz-pagination,
.navigation.pagination,
.nav-links,
.page-numbers-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 28px 0;
  flex-wrap: wrap;
  width: 100%;
}
/* WordPress default paginate_links outputs <a> and <span> directly */
.sz-pagination a,
.sz-pagination span,
.navigation .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 50px;
  border: 1.5px solid var(--sz-border);
  font-size: 14px;
  color: var(--sz-text2);
  transition: all 0.15s;
  text-decoration: none;
  line-height: 1;
  background: #fff;
}
.sz-pagination a:hover,
.navigation .page-numbers:not(.current):hover {
  background: var(--sz-pink-pale);
  border-color: var(--sz-pink);
  color: var(--sz-pink);
}
.sz-pagination .current,
.navigation .page-numbers.current {
  background: var(--sz-pink);
  border-color: var(--sz-pink);
  color: #fff;
}
.sz-pagination .prev,
.sz-pagination .next,
.navigation .prev,
.navigation .next {
  min-width: auto;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
}
/* Kill WordPress default list-item pagination layout */
.sz-pagination ul,
.page-numbers.nav-pagination { 
  list-style: none;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0; padding: 0;
}
.sz-pagination li { display: contents; }

/* --- FIX: Related grid item flex layout --- */
.sz-related-grid a,
.sz-related-grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.sz-related-grid a > div,
.sz-related-grid > div > div {
  flex: 1;
  min-width: 0;
}
.sz-related-grid .name,
.sz-related-grid a > div > div:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --- FIX: Archive full-width — .sz-layout inside archive should span full container --- */
.sz-archive-header,
.sz-archive-search,
.sz-archive-header-inner {
  width: 100%;
  box-sizing: border-box;
}

/* Ensure layout grid never overflows its container */
.sz-layout {
  box-sizing: border-box;
  width: 100%;
}

/* --- FIX: Sidebar avatar rows (all single templates) --- */
aside .sz-widget a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
aside .sz-widget a > div {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
aside .sz-widget a > div > div:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}

/* --- FIX: Star avatar text - ensure proper inline display --- */
.sz-star-avatar-text {
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0 !important;
  line-height: 1;
}

/* --- FIX: Trending item avatar flex --- */
.sz-trending-item > div[style*="border-radius:12px"] {
  flex-shrink: 0;
  overflow: hidden;
}

/* --- FIX: WP pagenavi plugin compat --- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 28px 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 50px !important;
  border: 1.5px solid var(--sz-border) !important;
  font-size: 14px;
  color: var(--sz-text2);
  background: #fff;
  transition: all 0.15s;
  text-decoration: none;
}
.wp-pagenavi a:hover { background: var(--sz-pink-pale); border-color: var(--sz-pink) !important; color: var(--sz-pink); }
.wp-pagenavi span.current { background: var(--sz-pink) !important; border-color: var(--sz-pink) !important; color: #fff !important; }

/* =============================================
   REVIEW SYSTEM — v1.0.3
============================================= */
.sz-reviews-section {
  background: #fff;
  border: 1px solid var(--sz-border);
  border-radius: 18px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: var(--sz-shadow);
}

/* Summary block */
.sz-reviews-summary {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--sz-border);
  flex-wrap: wrap;
}
.sz-reviews-score-big {
  text-align: center;
  min-width: 90px;
  flex-shrink: 0;
}
.sz-score-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--sz-pink);
  line-height: 1;
  margin-bottom: 4px;
}
.sz-score-stars { font-size: 22px; margin-bottom: 4px; }
.sz-score-stars .sz-star { color: #e0e0e0; }
.sz-score-stars .sz-star.filled { color: var(--sz-gold); }
.sz-score-count { font-size: 12px; color: var(--sz-text3); }

/* Bar chart */
.sz-reviews-bars { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.sz-bar-row { display: flex; align-items: center; gap: 8px; }
.sz-bar-label { font-size: 12px; font-weight: 600; color: var(--sz-text2); width: 22px; text-align: right; flex-shrink: 0; }
.sz-bar-track { flex: 1; height: 8px; background: var(--sz-bg); border-radius: 50px; overflow: hidden; border: 1px solid var(--sz-border); }
.sz-bar-fill { height: 100%; border-radius: 50px; transition: width 0.6s ease; }
.sz-bar-num { font-size: 11px; color: var(--sz-text3); width: 18px; text-align: left; flex-shrink: 0; }

/* Review form */
.sz-review-form-wrap {
  background: var(--sz-bg);
  border: 1px solid var(--sz-border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
}
.sz-review-form-wrap h4 { font-size: 15px; font-weight: 700; color: var(--sz-dark); margin-bottom: 14px; }
.sz-review-form { display: flex; flex-direction: column; gap: 12px; }

/* Star picker */
.sz-star-picker { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sz-star-picker-label { font-size: 13px; font-weight: 600; color: var(--sz-text2); flex-shrink: 0; }
.sz-star-btns { display: flex; gap: 4px; }
.sz-star-btn {
  font-size: 28px;
  color: #d0d0d0;
  cursor: pointer;
  transition: color 0.12s, transform 0.12s;
  user-select: none;
  line-height: 1;
}
.sz-star-btn:hover,
.sz-star-btn.active { color: var(--sz-gold); transform: scale(1.15); }
.sz-star-picker-hint { font-size: 12px; color: var(--sz-text3); }

/* Anonymous toggle */
.sz-anon-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.sz-anon-check { display: none; }
.sz-anon-slider {
  width: 40px; height: 22px;
  background: #d0d0d0;
  border-radius: 50px;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
.sz-anon-slider::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.sz-anon-check:checked + .sz-anon-slider { background: var(--sz-pink); }
.sz-anon-check:checked + .sz-anon-slider::after { transform: translateX(18px); }
.sz-anon-label { font-size: 13px; color: var(--sz-text2); font-weight: 500; }

/* Inputs */
.sz-review-input {
  width: 100%;
  border: 1.5px solid var(--sz-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.sz-review-input:focus { border-color: var(--sz-pink); }
.sz-review-textarea { resize: vertical; min-height: 80px; }

.sz-review-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.sz-char-count { font-size: 12px; color: var(--sz-text3); }
.sz-review-submit {
  background: var(--sz-pink);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.sz-review-submit:hover { background: #c82060; }
.sz-review-submit:disabled { background: #ccc; cursor: not-allowed; }

/* Message */
.sz-review-msg {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}
.sz-review-msg--ok { background: #f0fdf4; color: #166534; border: 1px solid #86efac; }
.sz-review-msg--error { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* Reviews list */
.sz-reviews-list-header { margin-bottom: 14px; }
.sz-reviews-list-header h4 { font-size: 15px; font-weight: 700; color: var(--sz-dark); }

.sz-review-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--sz-border);
}
.sz-review-item:last-child { border-bottom: none; }

.sz-review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.sz-review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.sz-review-meta { flex: 1; min-width: 0; }
.sz-review-author { font-size: 14px; font-weight: 700; color: var(--sz-dark); }
.sz-review-stars { display: flex; align-items: center; gap: 4px; margin-top: 2px; font-size: 14px; }
.sz-review-stars .sz-star { color: #d0d0d0; line-height: 1; }
.sz-review-stars .sz-star.filled { color: var(--sz-gold); }
.sz-review-score { font-size: 11px; font-weight: 700; margin-left: 4px; }
.sz-review-date { font-size: 11px; color: var(--sz-text3); flex-shrink: 0; margin-top: 3px; }
.sz-review-content { font-size: 14px; color: var(--sz-text2); line-height: 1.6; padding-left: 50px; }

.sz-reviews-empty {
  text-align: center;
  padding: 32px;
  color: var(--sz-text3);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
  .sz-reviews-summary { flex-direction: column; gap: 16px; }
  .sz-score-number { font-size: 36px; }
  .sz-review-content { padding-left: 0; margin-top: 8px; }
  .sz-star-btn { font-size: 24px; }
}
