/*
Theme Name: Đẹp.TV Theme
Theme URI: https://dep.tv
Author: OpenAI
Author URI: https://openai.com
Description: Theme WordPress cho Đẹp.TV - nền tảng tôn vinh cái đẹp Việt Nam
Version: 3.0.1
Text Domain: starzone
*/

@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,400;0,7..72,500;0,7..72,600;0,7..72,700;0,7..72,800;1,7..72,400;1,7..72,500;1,7..72,600;1,7..72,700&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: 'Literata', Georgia, 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; }
}


/* =============================
   DEP.TV HOMEPAGE + BRANDING
============================= */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --p:#E8457A;--p1:#fce8f0;--p2:#f7c5d8;--p3:#f099bc;
  --pd:#7a1a3a;--pp:#3d0d1e;
  --ink:#1a0a10;--ink2:#4a2535;--muted:#8a5568;
  --bg:#fff8fb;--white:#ffffff;
  --border:rgba(232,69,122,0.15);
  --r:14px;--rs:8px;
}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--ink);font-family:'Literata', Georgia, serif;overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{display:block}

/* ─── NAV ─── */
.nav{position:sticky;top:0;z-index:999;background:rgba(255,248,251,0.85);backdrop-filter:blur(20px);border-bottom:1px solid var(--border)}
.nav-w{max-width:1320px;margin:0 auto;padding:0 28px;height:60px;display:flex;align-items:center;gap:20px}
.logo{font-family:'Literata', Georgia, serif;font-size:24px;font-weight:900;letter-spacing:-0.5px;flex-shrink:0}
.logo em{color:var(--p);font-style:normal}
.nav-links{display:flex;gap:2px;flex:1}
.nav-links a{font-size:13px;font-weight:500;color:var(--muted);padding:5px 13px;border-radius:20px;transition:.15s;white-space:nowrap}
.nav-links a:hover,.nav-links a.on{background:var(--p1);color:var(--p)}
.nav-r{display:flex;gap:8px;margin-left:auto;flex-shrink:0}
.nbtn{font-size:13px;font-weight:600;padding:7px 18px;border-radius:20px;border:1.5px solid var(--p2);background:transparent;color:var(--ink2);cursor:pointer;transition:.2s}
.nbtn:hover{border-color:var(--p);color:var(--p)}
.nbtn.fill{background:var(--p);border-color:var(--p);color:#fff}
.nbtn.fill:hover{background:var(--pd)}

/* ─── HERO ─── */
.hero{
  background:linear-gradient(160deg,var(--pp) 0%,var(--pd) 40%,#c43070 70%,var(--p) 100%);
  padding:80px 28px 72px;position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob{position:absolute;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(255,200,220,0.12) 0%,transparent 70%);top:-200px;right:-100px;pointer-events:none}
.hero-blob2{position:absolute;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,0.06) 0%,transparent 70%);bottom:-150px;left:-50px;pointer-events:none}
.hero-inner{max-width:1320px;margin:0 auto;position:relative;z-index:2}
.hero-kicker{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);border-radius:20px;padding:5px 14px;font-size:12px;font-weight:600;color:rgba(255,255,255,0.85);margin-bottom:24px;letter-spacing:.3px}
.dot-live{width:7px;height:7px;border-radius:50%;background:#7fff7f;box-shadow:0 0 6px #7fff7f;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero-h1{font-family:'Literata', Georgia, serif;font-size:clamp(48px,6vw,80px);font-weight:900;color:#fff;line-height:1.0;margin-bottom:16px;letter-spacing:-1px}
.hero-h1 em{font-style:italic;color:#ffc8dc}
.hero-sub{font-size:17px;font-weight:300;color:rgba(255,255,255,0.75);max-width:520px;line-height:1.7;margin-bottom:40px}

/* SEARCH IN HERO */
.hero-search{background:#fff;border-radius:var(--r);padding:6px 6px 6px 20px;display:flex;align-items:center;gap:12px;max-width:680px;box-shadow:0 20px 60px rgba(0,0,0,0.25)}
.hero-search input{flex:1;border:none;outline:none;font-size:15px;font-family:'Literata', Georgia, serif;color:var(--ink);background:transparent}
.hero-search input::placeholder{color:var(--muted)}
.hero-search-btn{background:var(--p);color:#fff;border:none;border-radius:10px;padding:12px 24px;font-size:14px;font-weight:600;cursor:pointer;white-space:nowrap;transition:.2s;display:flex;align-items:center;gap:8px}
.hero-search-btn:hover{background:var(--pd)}
.search-divider{width:1px;height:24px;background:var(--border)}
.search-cat{font-size:13px;font-weight:500;color:var(--muted);cursor:pointer;display:flex;align-items:center;gap:4px;white-space:nowrap}

.hero-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}
.hero-tag{background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);border-radius:20px;padding:5px 14px;font-size:12px;font-weight:500;color:rgba(255,255,255,0.8);cursor:pointer;transition:.2s}
.hero-tag:hover{background:rgba(255,255,255,0.22);color:#fff}

.hero-stats-row{display:flex;gap:48px;margin-top:52px;padding-top:40px;border-top:1px solid rgba(255,255,255,0.12)}
.hstat-n{font-family:'Literata', Georgia, serif;font-size:36px;font-weight:900;color:#fff;line-height:1}
.hstat-l{font-size:12px;color:rgba(255,255,255,0.55);margin-top:4px;font-weight:400}

/* ─── TICKER ─── */
.ticker{background:var(--p);padding:12px 0;overflow:hidden;white-space:nowrap;border-bottom:1px solid var(--pd)}
.ticker-track{display:inline-flex;animation:tick 35s linear infinite;gap:0}
.ticker-item{font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:#fff;padding:0 32px;opacity:.85}
.ticker-sep{color:rgba(255,255,255,0.3);padding:0 4px}
@keyframes tick{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ─── SECTION SHELL ─── */
.sec{max-width:1320px;margin:0 auto;padding:56px 28px}
.sec-sm{max-width:1320px;margin:0 auto;padding:40px 28px}
.sec-hd{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:28px}
.sec-left .ey{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--p);margin-bottom:6px}
.sec-left h2{font-family:'Literata', Georgia, serif;font-size:32px;font-weight:700;color:var(--ink);line-height:1.15}
.sec-left h2 em{font-style:italic;color:var(--p)}
.see-all{font-size:13px;font-weight:600;color:var(--muted);display:flex;align-items:center;gap:4px;transition:.2s;border-bottom:1px solid transparent}
.see-all:hover{color:var(--p);border-color:var(--p)}

/* ─── CATEGORIES GRID ─── */
.cats{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.cat{background:var(--white);border:1px solid var(--border);border-radius:var(--r);padding:22px 16px;text-align:center;cursor:pointer;transition:.25s;display:flex;flex-direction:column;align-items:center;gap:8px}
.cat:hover{border-color:var(--p);transform:translateY(-4px);box-shadow:0 12px 32px rgba(232,69,122,0.12)}
.cat-ico{width:54px;height:54px;border-radius:14px;background:var(--p1);display:flex;align-items:center;justify-content:center;font-size:26px;transition:.2s}
.cat:hover .cat-ico{background:var(--p2)}
.cat-n{font-size:13px;font-weight:600;color:var(--ink);line-height:1.3}
.cat-c{font-size:11px;color:var(--muted)}

/* ─── EDITORIAL HERO ─── */
.editorial{background:var(--white);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:56px 0}
.editorial-w{max-width:1320px;margin:0 auto;padding:0 28px}
.ed-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:4px;border-radius:var(--r);overflow:hidden}
.ed-big{position:relative;cursor:pointer;overflow:hidden;min-height:480px;display:flex;flex-direction:column;justify-content:flex-end}
.ed-big-bg{position:absolute;inset:0;background:linear-gradient(160deg,var(--pp),var(--pd),var(--p));transition:.5s}
.ed-big:hover .ed-big-bg{transform:scale(1.03)}
.ed-big-deco{position:absolute;font-size:200px;opacity:.08;right:-20px;top:-20px;pointer-events:none}
.ed-big-body{position:relative;z-index:2;padding:36px}
.ed-small-col{display:flex;flex-direction:column;gap:4px}
.ed-sm{position:relative;cursor:pointer;overflow:hidden;flex:1;display:flex;flex-direction:column;justify-content:flex-end;min-height:114px}
.ed-sm-bg{position:absolute;inset:0;transition:.4s}
.ed-sm:hover .ed-sm-bg{transform:scale(1.04)}
.ed-sm-body{position:relative;z-index:2;padding:20px}
.ed-tag{display:inline-block;background:rgba(255,255,255,0.15);border:1px solid rgba(255,255,255,0.25);border-radius:20px;padding:3px 10px;font-size:10px;font-weight:700;color:#fff;letter-spacing:.5px;margin-bottom:8px}
.ed-title{font-family:'Literata', Georgia, serif;color:#fff;font-weight:700;line-height:1.25}
.ed-meta{font-size:11px;color:rgba(255,255,255,0.55);margin-top:8px}
.ed-big .ed-title{font-size:26px}
.ed-sm .ed-title{font-size:14px}
.ed-more-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:20px}
.ed-more-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;cursor:pointer;transition:.25s}
.ed-more-card:hover{border-color:var(--p);box-shadow:0 8px 24px rgba(232,69,122,0.1);transform:translateY(-3px)}
.ed-mc-top{height:140px;display:flex;align-items:center;justify-content:center;font-size:50px;position:relative;overflow:hidden}
.ed-mc-body{padding:16px}
.ed-mc-cat{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--p);margin-bottom:6px}
.ed-mc-title{font-family:'Literata', Georgia, serif;font-size:16px;font-weight:700;color:var(--ink);line-height:1.3;margin-bottom:6px}
.ed-mc-meta{font-size:11px;color:var(--muted)}

/* ─── FEATURED BRANDS ─── */
.brands-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.brand-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;cursor:pointer;transition:.25s;display:flex;flex-direction:column}
.brand-card:hover{border-color:var(--p);transform:translateY(-5px);box-shadow:0 16px 40px rgba(232,69,122,0.12)}
.bc-top{height:180px;display:flex;align-items:center;justify-content:center;font-size:60px;position:relative}
.bc-type-tag{position:absolute;top:12px;left:12px;background:#fff;border-radius:20px;padding:3px 10px;font-size:10px;font-weight:700;color:var(--pd)}
.bc-cert{position:absolute;top:12px;right:12px;background:var(--p);border-radius:20px;padding:3px 10px;font-size:10px;font-weight:700;color:#fff}
.bc-body{padding:16px;flex:1;display:flex;flex-direction:column}
.bc-name{font-family:'Literata', Georgia, serif;font-size:19px;font-weight:700;color:var(--ink);margin-bottom:5px}
.bc-desc{font-size:12px;color:var(--muted);line-height:1.55;flex:1;margin-bottom:14px}
.bc-foot{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid var(--p1)}
.bc-loc{font-size:11px;color:var(--muted);display:flex;align-items:center;gap:3px}
.bc-btn{font-size:11px;font-weight:700;color:var(--p);background:var(--p1);border:none;border-radius:20px;padding:5px 12px;cursor:pointer;transition:.2s}
.bc-btn:hover{background:var(--p);color:#fff}

/* ─── ARTISAN SECTION ─── */
.artisan-bg{background:var(--p1);border-top:1px solid var(--p2);border-bottom:1px solid var(--p2);padding:56px 0}
.artisan-w{max-width:1320px;margin:0 auto;padding:0 28px}
.art-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.art-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;cursor:pointer;transition:.25s}
.art-card:hover{border-color:var(--p);box-shadow:0 10px 28px rgba(232,69,122,0.12);transform:translateY(-4px)}
.art-cover{height:220px;display:flex;align-items:center;justify-content:center;font-size:80px;position:relative}
.art-body{padding:22px}
.art-craft{font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--p);margin-bottom:6px}
.art-name{font-family:'Literata', Georgia, serif;font-size:20px;font-weight:700;color:var(--ink);margin-bottom:8px}
.art-story{font-size:13px;color:var(--muted);line-height:1.65;margin-bottom:14px}
.art-tags{display:flex;flex-wrap:wrap;gap:6px}
.tag{font-size:10px;font-weight:600;padding:3px 10px;border-radius:20px;background:var(--p1);color:var(--pd)}

/* ─── KHÔNG GIAN ĐẸP ─── */
.spaces-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.space-card{border-radius:var(--r);overflow:hidden;cursor:pointer;position:relative;aspect-ratio:3/4;display:flex;flex-direction:column;justify-content:flex-end;transition:.25s}
.space-card:hover{transform:scale(1.02)}
.space-bg{position:absolute;inset:0;transition:.4s}
.space-card:hover .space-bg{transform:scale(1.06)}
.space-overlay{position:absolute;inset:0;background:linear-gradient(transparent 40%,rgba(61,13,30,0.7))}
.space-body{position:relative;z-index:2;padding:20px}
.space-tag{font-size:10px;font-weight:700;color:rgba(255,255,255,0.7);letter-spacing:1px;text-transform:uppercase;margin-bottom:6px}
.space-name{font-family:'Literata', Georgia, serif;font-size:17px;font-weight:700;color:#fff;line-height:1.25}
.space-loc{font-size:11px;color:rgba(255,255,255,0.6);margin-top:4px}

/* ─── TRENDING NOW (horizontal scroll) ─── */
.trending-track{display:flex;gap:16px;overflow-x:auto;padding-bottom:8px;scrollbar-width:none}
.trending-track::-webkit-scrollbar{display:none}
.trend-card{flex-shrink:0;width:220px;background:var(--white);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;cursor:pointer;transition:.25s}
.trend-card:hover{border-color:var(--p);transform:translateY(-3px);box-shadow:0 8px 20px rgba(232,69,122,0.1)}
.trend-top{height:150px;display:flex;align-items:center;justify-content:center;font-size:50px}
.trend-body{padding:14px}
.trend-rank{font-family:'Literata', Georgia, serif;font-size:24px;font-weight:900;color:var(--p1);line-height:1;margin-bottom:4px}
.trend-name{font-size:13px;font-weight:600;color:var(--ink);margin-bottom:3px}
.trend-cat{font-size:11px;color:var(--muted)}

/* ─── MAP / LOCATION ─── */
.loc-bg{background:var(--ink);padding:56px 0}
.loc-w{max-width:1320px;margin:0 auto;padding:0 28px}
.loc-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.loc-map{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:20px;height:380px;display:flex;align-items:center;justify-content:center;font-size:48px;position:relative;overflow:hidden}
.loc-map-txt{color:rgba(255,255,255,0.15);font-family:'Literata', Georgia, serif;font-size:80px;font-weight:900;position:absolute}
.loc-title{font-family:'Literata', Georgia, serif;font-size:36px;font-weight:700;color:#fff;line-height:1.2;margin-bottom:16px}
.loc-title em{font-style:italic;color:var(--p3)}
.loc-sub{font-size:15px;color:rgba(255,255,255,0.55);line-height:1.7;margin-bottom:28px}
.loc-chips{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:32px}
.loc-chip{background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.12);border-radius:20px;padding:7px 16px;font-size:13px;font-weight:500;color:rgba(255,255,255,0.75);cursor:pointer;transition:.2s}
.loc-chip:hover,.loc-chip.on{background:var(--p);border-color:var(--p);color:#fff}

/* ─── EVENTS / WORKSHOP ─── */
.ev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.ev-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r);padding:24px;cursor:pointer;transition:.25s;display:flex;flex-direction:column;gap:12px}
.ev-card:hover{border-color:var(--p);box-shadow:0 8px 24px rgba(232,69,122,0.1);transform:translateY(-3px)}
.ev-date-badge{display:inline-flex;flex-direction:column;align-items:center;background:var(--p1);border-radius:10px;padding:8px 14px;width:fit-content}
.ev-day{font-family:'Literata', Georgia, serif;font-size:28px;font-weight:900;color:var(--p);line-height:1}
.ev-mon{font-size:11px;font-weight:700;color:var(--pd);text-transform:uppercase;letter-spacing:1px}
.ev-type{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--p)}
.ev-name{font-family:'Literata', Georgia, serif;font-size:18px;font-weight:700;color:var(--ink);line-height:1.3}
.ev-info{font-size:12px;color:var(--muted);line-height:1.55}
.ev-foot{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid var(--p1)}
.ev-price{font-size:13px;font-weight:700;color:var(--ink2)}
.ev-register{font-size:11px;font-weight:700;color:var(--p);background:var(--p1);padding:5px 12px;border-radius:20px;border:none;cursor:pointer;transition:.2s}
.ev-register:hover{background:var(--p);color:#fff}

/* ─── VIDEO CHANNEL TEASER ─── */
.video-bg{background:linear-gradient(135deg,var(--pp) 0%,var(--pd) 100%);padding:56px 0;position:relative;overflow:hidden}
.video-deco{position:absolute;font-family:'Literata', Georgia, serif;font-size:300px;font-weight:900;color:rgba(255,255,255,0.03);right:-40px;bottom:-60px;pointer-events:none;line-height:1}
.video-w{max-width:1320px;margin:0 auto;padding:0 28px}
.video-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.video-thumb-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.vt{border-radius:var(--r);overflow:hidden;cursor:pointer;position:relative;aspect-ratio:16/9;display:flex;align-items:center;justify-content:center}
.vt-bg{position:absolute;inset:0;transition:.3s}
.vt:hover .vt-bg{transform:scale(1.05)}
.vt-play{position:relative;z-index:2;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,0.9);display:flex;align-items:center;justify-content:center;font-size:14px;color:var(--p)}
.vt-label{position:absolute;bottom:0;left:0;right:0;padding:10px;background:linear-gradient(transparent,rgba(0,0,0,0.7));font-size:11px;font-weight:600;color:#fff;z-index:2}
.video-text .ey{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.5);margin-bottom:8px}
.video-text h2{font-family:'Literata', Georgia, serif;font-size:40px;font-weight:900;color:#fff;line-height:1.1;margin-bottom:14px}
.video-text h2 em{font-style:italic;color:#ffc8dc}
.video-text p{font-size:15px;color:rgba(255,255,255,0.6);line-height:1.7;margin-bottom:28px}
.vbtn{display:inline-flex;align-items:center;gap:8px;background:#fff;color:var(--pd);font-size:14px;font-weight:700;padding:13px 28px;border-radius:12px;border:none;cursor:pointer;transition:.2s}
.vbtn:hover{background:var(--p1);transform:translateY(-2px)}

/* ─── MAGAZINE STRIP ─── */
.mag-strip{display:grid;grid-template-columns:repeat(3,1fr);border-top:2px solid var(--ink);border-bottom:2px solid var(--ink)}
.mag-item{padding:36px 28px;border-right:1px solid var(--border);cursor:pointer;transition:.2s;position:relative}
.mag-item:last-child{border-right:none}
.mag-item:hover{background:var(--white)}
.mag-n{font-family:'Literata', Georgia, serif;font-size:60px;font-weight:900;color:var(--p1);line-height:1;margin-bottom:-10px}
.mag-cat{font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--p);margin-bottom:10px}
.mag-title{font-family:'Literata', Georgia, serif;font-size:20px;font-weight:700;color:var(--ink);line-height:1.3;margin-bottom:10px}
.mag-exc{font-size:13px;color:var(--muted);line-height:1.65;margin-bottom:14px}
.mag-by{font-size:11px;color:var(--muted);font-style:italic}

/* ─── NGƯỜI NỔI BẬT ─── */
.ppl-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.ppl-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r);padding:24px 16px;text-align:center;cursor:pointer;transition:.25s;display:flex;flex-direction:column;align-items:center;gap:8px}
.ppl-card:hover{border-color:var(--p);transform:translateY(-4px);box-shadow:0 10px 28px rgba(232,69,122,0.1)}
.ppl-av{width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,var(--p2),var(--p3));display:flex;align-items:center;justify-content:center;font-size:30px;border:3px solid var(--p1);margin-bottom:4px}
.ppl-name{font-family:'Literata', Georgia, serif;font-size:16px;font-weight:700;color:var(--ink)}
.ppl-title{font-size:11px;color:var(--muted);line-height:1.4}
.ppl-follow{font-size:11px;font-weight:700;color:var(--p);background:var(--p1);padding:5px 14px;border-radius:20px;border:none;cursor:pointer;transition:.2s;margin-top:4px}
.ppl-follow:hover{background:var(--p);color:#fff}

/* ─── TESTIMONIALS ─── */
.testi-bg{background:var(--white);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:56px 0}
.testi-w{max-width:1320px;margin:0 auto;padding:0 28px}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.testi-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--r);padding:28px}
.testi-stars{color:var(--p);font-size:14px;letter-spacing:2px;margin-bottom:14px}
.testi-quote{font-family:'Literata', Georgia, serif;font-size:16px;font-style:italic;color:var(--ink);line-height:1.65;margin-bottom:18px}
.testi-footer{display:flex;align-items:center;gap:12px}
.testi-av{width:40px;height:40px;border-radius:50%;background:var(--p2);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.testi-nm{font-size:13px;font-weight:600;color:var(--ink)}
.testi-role{font-size:11px;color:var(--muted)}

/* ─── APP CTA ─── */
.app-cta{background:var(--bg);padding:56px 0}
.app-inner{max-width:1320px;margin:0 auto;padding:0 28px}
.app-card{background:linear-gradient(135deg,var(--pp),var(--pd),var(--p));border-radius:24px;padding:56px 64px;display:flex;align-items:center;justify-content:space-between;gap:48px;position:relative;overflow:hidden}
.app-deco{position:absolute;right:-40px;top:50%;transform:translateY(-50%);font-family:'Literata', Georgia, serif;font-size:260px;font-weight:900;color:rgba(255,255,255,0.04);line-height:1;pointer-events:none}
.app-label{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.5);margin-bottom:12px}
.app-title{font-family:'Literata', Georgia, serif;font-size:44px;font-weight:900;color:#fff;line-height:1.1;margin-bottom:12px}
.app-title em{font-style:italic;color:#ffc8dc}
.app-sub{font-size:15px;color:rgba(255,255,255,0.65);line-height:1.65}
.app-actions{flex-shrink:0;display:flex;flex-direction:column;gap:12px;align-items:flex-end}
.abtn{display:inline-flex;align-items:center;gap:10px;padding:14px 28px;border-radius:12px;font-size:14px;font-weight:700;cursor:pointer;transition:.2s;border:none;white-space:nowrap}
.abtn.white{background:#fff;color:var(--pd)}
.abtn.white:hover{background:var(--p1);transform:translateY(-2px)}
.abtn.outline{background:rgba(255,255,255,0.1);border:1.5px solid rgba(255,255,255,0.25);color:#fff}
.abtn.outline:hover{background:rgba(255,255,255,0.2);transform:translateY(-2px)}

/* ─── BLOG / TIN TỨC ─── */
.blog-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px}
.blog-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;cursor:pointer;transition:.25s}
.blog-card:hover{border-color:var(--p);transform:translateY(-3px);box-shadow:0 8px 24px rgba(232,69,122,0.1)}
.blog-top{height:180px;display:flex;align-items:center;justify-content:center;font-size:56px;position:relative}
.blog-body{padding:20px}
.blog-cat{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--p);margin-bottom:6px}
.blog-title{font-family:'Literata', Georgia, serif;font-size:18px;font-weight:700;color:var(--ink);line-height:1.3;margin-bottom:8px}
.blog-exc{font-size:13px;color:var(--muted);line-height:1.6;margin-bottom:14px}
.blog-foot{display:flex;align-items:center;justify-content:space-between;font-size:11px;color:var(--muted);border-top:1px solid var(--p1);padding-top:12px}

/* ─── PARTNER LOGOS ─── */
.partner-bg{background:var(--white);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:36px 0}
.partner-w{max-width:1320px;margin:0 auto;padding:0 28px}
.partner-label{text-align:center;font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--muted);margin-bottom:24px}
.partner-logos{display:flex;justify-content:center;align-items:center;gap:40px;flex-wrap:wrap}
.p-logo{font-family:'Literata', Georgia, serif;font-size:18px;font-weight:700;color:var(--muted);opacity:.45;transition:.2s;cursor:pointer;letter-spacing:-0.5px}
.p-logo:hover{opacity:.85;color:var(--p)}

/* ─── NEWSLETTER ─── */
.newsletter{background:var(--p1);border-top:1px solid var(--p2);border-bottom:1px solid var(--p2);padding:48px 0}
.nl-w{max-width:1320px;margin:0 auto;padding:0 28px;display:flex;align-items:center;justify-content:space-between;gap:48px}
.nl-left .ey{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--p);margin-bottom:8px}
.nl-left h3{font-family:'Literata', Georgia, serif;font-size:28px;font-weight:700;color:var(--ink);margin-bottom:6px}
.nl-left p{font-size:14px;color:var(--muted)}
.nl-form{display:flex;gap:10px;align-items:center;flex-shrink:0}
.nl-input{padding:12px 18px;border-radius:12px;border:1.5px solid var(--p2);background:#fff;font-size:14px;font-family:'Literata', Georgia, serif;color:var(--ink);width:300px;outline:none}
.nl-input:focus{border-color:var(--p)}
.nl-btn{background:var(--p);color:#fff;border:none;padding:12px 24px;border-radius:12px;font-size:14px;font-weight:700;cursor:pointer;transition:.2s;white-space:nowrap}
.nl-btn:hover{background:var(--pd)}

/* ─── FOOTER ─── */
footer{background:var(--pp);padding:52px 0 28px;border-top:3px solid var(--p)}
.footer-w{max-width:1320px;margin:0 auto;padding:0 28px}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,0.08);margin-bottom:24px}
.f-logo{font-family:'Literata', Georgia, serif;font-size:28px;font-weight:900;color:#fff;display:block;margin-bottom:8px;letter-spacing:-.5px}
.f-logo em{color:var(--p3);font-style:normal}
.f-slogan{font-family:'Literata', Georgia, serif;font-style:italic;color:var(--p3);font-size:14px;margin-bottom:12px}
.f-bio{font-size:13px;color:rgba(255,255,255,0.4);line-height:1.7;max-width:240px}
.f-socials{display:flex;gap:8px;margin-top:16px}
.f-soc{width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);display:flex;align-items:center;justify-content:center;font-size:14px;cursor:pointer;transition:.2s}
.f-soc:hover{background:var(--p);border-color:var(--p)}
.fc h5{font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--p3);margin-bottom:16px}
.fc ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.fc ul li a{font-size:13px;color:rgba(255,255,255,0.45);transition:.2s}
.fc ul li a:hover{color:var(--p3)}
.footer-bottom{display:flex;justify-content:space-between;font-size:11px;color:rgba(255,255,255,0.25)}

body{font-family:'Literata', Georgia, serif;background:var(--bg);color:var(--ink)}
.nav-links ul,.footer-top ul{list-style:none;margin:0;padding:0}
.nav-links .menu,.dep-nav-menu{display:flex;gap:2px;flex:1;flex-wrap:wrap}
.nav-links li{list-style:none}
.dep-logo-image img.custom-logo{max-height:44px;width:auto}
.nav-w .custom-logo-link{display:block;line-height:0}
.nav .logo{display:flex;align-items:center}
.nav-r a{text-decoration:none}
.footer-top .fc ul{display:flex;flex-direction:column;gap:9px}
body.home #sz-header,body.home #sz-mobile-bottom-nav,body.home .sz-chat-float,body.home .sz-newsletter,body.home #sz-footer{display:none !important}
#dep-newsletter-form{margin:0}


/* Đẹp.TV patch v3.0.1 */
html, body, button, input, select, textarea {
  font-family: 'Literata', Georgia, serif;
}
.dep-nav-menu,
.dep-nav-menu > li,
.dep-nav-menu .menu-item-has-children {
  position: relative;
}
.nav-links .menu,
.dep-nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  flex-wrap: nowrap;
  overflow: visible;
}
.dep-nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.dep-nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  display: none;
  min-width: 220px;
  padding: 8px 0;
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  z-index: 9999;
}
.dep-nav-menu .sub-menu li {
  width: 100%;
}
.dep-nav-menu li:hover > .sub-menu,
.dep-nav-menu li:focus-within > .sub-menu {
  display: block;
}
.dep-nav-menu .sub-menu a {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
}
.dep-nav-menu .sub-menu a:hover {
  background: var(--p1);
  color: var(--p);
}
.dep-nav-menu .sub-menu .sub-menu {
  top: -8px;
  left: calc(100% - 8px);
}

@media (max-width: 1200px){
  .cats{grid-template-columns:repeat(4,1fr)}
  .brands-grid,.spaces-grid,.ppl-grid{grid-template-columns:repeat(3,1fr)}
  .art-grid,.ev-grid,.blog-grid,.testi-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:repeat(3,1fr)}
}
@media (max-width: 900px){
  .nav-w{height:auto;padding:14px 18px;flex-wrap:wrap}
  .nav-links{width:100%;order:3;overflow:auto}
  .nav-links .menu,.dep-nav-menu{flex-wrap:nowrap;overflow:auto;padding-bottom:4px}.dep-nav-menu .sub-menu{position:static;display:none;box-shadow:none;border:0;background:transparent;padding:4px 0 0}.dep-nav-menu li:hover > .sub-menu,.dep-nav-menu li:focus-within > .sub-menu{display:block}.dep-nav-menu .sub-menu a{padding:6px 10px;font-size:12px}
  .nav-r{margin-left:0;width:100%;justify-content:flex-end}
  .hero{padding:54px 18px 42px}
  .hero-search{flex-wrap:wrap;padding:10px 12px;gap:10px}
  .hero-search input{width:100%}
  .search-divider,.search-cat{display:none}
  .hero-search-btn{width:100%;justify-content:center}
  .hero-stats-row{gap:18px;flex-wrap:wrap}
  .sec,.sec-sm,.editorial-w,.artisan-w,.loc-w,.video-w,.app-inner,.partner-w,.footer-w{padding-left:18px;padding-right:18px}
  .cats,.brands-grid,.spaces-grid,.ppl-grid,.blog-grid,.testi-grid,.ev-grid,.art-grid,.video-grid,.loc-grid,.nl-w{grid-template-columns:1fr !important}
  .ed-grid{grid-template-columns:1fr}
  .ed-small-col{display:grid;grid-template-columns:1fr;gap:4px}
  .ed-more-grid{grid-template-columns:1fr}
  .app-card{padding:32px 22px;flex-direction:column;align-items:flex-start}
  .app-actions{align-items:stretch;width:100%}
  .abtn{justify-content:center;width:100%}
  .footer-top{grid-template-columns:1fr 1fr;gap:24px}
  .footer-bottom{flex-direction:column;gap:10px}
}
@media (max-width: 640px){
  .hero-h1{font-size:42px}
  .sec-left h2,.loc-title,.video-text h2,.app-title{font-size:30px}
  .cats,.brands-grid,.spaces-grid,.ppl-grid{grid-template-columns:1fr !important}
  .footer-top{grid-template-columns:1fr}
  .nl-form{width:100%;flex-direction:column;align-items:stretch}
  .nl-input{width:100%}
  .mag-strip{grid-template-columns:1fr}
  .mag-item{border-right:none;border-bottom:1px solid var(--border)}
  .mag-item:last-child{border-bottom:none}
}
