/* Audio Platform Frontend CSS v1.0.0 */
/* Font: Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --ap-primary:      #c8922a;
  --ap-secondary:    #e8c060;
  --ap-primary-dark: #a06818;
  --ap-dark-bg:      #080808;
  --ap-dark-bg2:     #0f0f0f;
  --ap-dark-bg3:     #161616;
  --ap-dark-bg4:     #1e1e1e;
  --ap-text:         #f0e8d8;
  --ap-text-mid:     #c8aa80;
  --ap-text-dim:     #9a8060;
  --ap-glow:         rgba(200,146,42,0.22);
  --ap-glow-big:     rgba(200,146,42,0.10);
  --ap-border:       rgba(200,146,42,0.12);
  --ap-border2:      rgba(200,146,42,0.22);
}

/* ===== AVATAR AUTO ===== */
.ap-avatar-auto {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--ap-avatar-bg, var(--ap-primary));
  color: #000; font-weight: 900; font-size: 1.4em;
  border-radius: 4px;
  aspect-ratio: 1;
  letter-spacing: -1px;
}
.ap-avatar-img { width:100%; height:100%; object-fit:cover; border-radius:4px; }

/* ===== CONTAINER ===== */
.ap-container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* ===== GRID LAYOUTS ===== */
.ap-products-grid,
.ap-kols-grid,
.ap-listings-grid,
.ap-events-grid,
.ap-brands-grid,
.ap-related { display:grid; gap:14px; }

.ap-cols-2 { grid-template-columns: repeat(2,1fr); }
.ap-cols-3 { grid-template-columns: repeat(3,1fr); }
.ap-cols-4 { grid-template-columns: repeat(4,1fr); }
.ap-cols-5 { grid-template-columns: repeat(5,1fr); }
.ap-cols-6 { grid-template-columns: repeat(6,1fr); }
.ap-cols-8 { grid-template-columns: repeat(8,1fr); }

/* ===== SECTION HEADINGS ===== */
.ap-section-heading {
  font-size:17px; font-weight:900; color:var(--ap-secondary);
  text-transform:uppercase; letter-spacing:0.8px;
  padding-bottom:8px; margin-bottom:20px;
  position:relative;
}
.ap-section-heading::after {
  content:''; position:absolute; bottom:0; left:0;
  width:32px; height:2px;
  background:linear-gradient(90deg,var(--ap-primary),transparent);
  border-radius:2px;
}
.ap-heading-center { text-align:center; }
.ap-heading-center::after { left:50%; transform:translateX(-50%); }

/* ===== BUTTONS ===== */
.ap-btn-gold {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 30px; border:none; border-radius:8px;
  background:linear-gradient(135deg, var(--ap-secondary) 0%, var(--ap-primary) 60%, var(--ap-primary-dark) 100%);
  color:#000; font-size:13px; font-weight:800; cursor:pointer;
  font-family:inherit; letter-spacing:0.5px;
  transition:all 0.22s; box-shadow:0 4px 20px var(--ap-glow);
  text-decoration:none;
}
.ap-btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 32px var(--ap-glow); opacity:.9; color:#000; }

.ap-btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 30px; background:transparent;
  border:1px solid var(--ap-border2); border-radius:8px;
  color:var(--ap-text-mid); font-size:13px; font-weight:600;
  cursor:pointer; font-family:inherit; transition:all 0.22s;
  text-decoration:none;
}
.ap-btn-ghost:hover { border-color:var(--ap-primary); color:var(--ap-secondary); background:var(--ap-glow-big); }

/* ===== PRODUCT CARD ===== */
.ap-product-card {
  background:var(--ap-dark-bg3); border:1px solid var(--ap-border);
  border-radius:12px; overflow:hidden; cursor:pointer;
  transition:all 0.22s; position:relative;
}
.ap-product-card:hover {
  border-color:var(--ap-primary);
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(200,146,42,0.10);
}
.ap-product-thumb {
  aspect-ratio:1; position:relative; overflow:hidden;
  background:radial-gradient(ellipse at center, #181000, #0d0900);
  display:flex; align-items:center; justify-content:center;
}
.ap-product-thumb::after {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at bottom, rgba(200,146,42,0.07), transparent 60%);
  pointer-events:none;
}
.ap-badge {
  position:absolute; top:8px; left:8px; z-index:2;
  padding:2px 8px; border-radius:4px;
  font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:0.5px;
}
.ap-badge-hot   { background:var(--ap-primary); color:#000; }
.ap-badge-new   { background:var(--ap-primary-dark); color:var(--ap-secondary); }
.ap-badge-sale  { background:rgba(200,146,42,0.2); color:var(--ap-secondary); border:1px solid var(--ap-border2); }
.ap-badge-deal  { background:#c0392b; color:#fff; }
.ap-fav-btn {
  position:absolute; top:8px; right:8px; z-index:2;
  width:28px; height:28px; background:rgba(0,0,0,0.6);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:12px; color:var(--ap-text-dim); opacity:0;
  transition:opacity 0.2s; cursor:pointer;
}
.ap-product-card:hover .ap-fav-btn { opacity:1; }
.ap-fav-btn:hover, .ap-fav-btn.active { color:var(--ap-secondary); }
.ap-product-info { padding:10px 12px 12px; }
.ap-product-brand { font-size:10px; font-weight:700; color:var(--ap-primary); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:3px; }
.ap-product-name { font-size:13px; font-weight:600; color:var(--ap-text); line-height:1.35; margin-bottom:5px; }
.ap-product-name a { color:inherit; text-decoration:none; }
.ap-product-name a:hover { color:var(--ap-secondary); }
.ap-product-type { font-size:11px; color:var(--ap-text-dim); margin-bottom:8px; }
.ap-product-bot { display:flex; align-items:center; justify-content:space-between; }
.ap-price { font-size:14px; font-weight:800; color:var(--ap-secondary); }
.ap-old-price { font-size:10px; color:var(--ap-text-dim); text-decoration:line-through; margin-top:1px; }
.ap-cart-btn {
  width:28px; height:28px; flex-shrink:0;
  background:linear-gradient(135deg,var(--ap-primary),var(--ap-primary-dark));
  border-radius:7px; display:flex; align-items:center; justify-content:center;
  font-size:12px; cursor:pointer; transition:opacity 0.2s; color:#000; font-weight:700;
  text-decoration:none;
}
.ap-cart-btn:hover { opacity:.8; }
.ap-out-of-stock {
  margin-top:6px; text-align:center; font-size:10px; color:#c0392b;
  font-weight:700; padding:2px 0;
}

/* ===== KOL CARD ===== */
.ap-kol-card {
  background:var(--ap-dark-bg3); border:1px solid var(--ap-border);
  border-radius:14px; padding:22px 12px 18px; text-align:center;
  cursor:pointer; transition:all 0.22s; position:relative;
}
.ap-kol-card:hover { border-color:var(--ap-primary); transform:translateY(-3px); box-shadow:0 8px 24px rgba(200,146,42,0.07); }
.ap-kol-av {
  width:68px; height:68px; border-radius:50%;
  margin:0 auto 12px; overflow:hidden;
  background:radial-gradient(135deg, #2d1800, #1a0d00);
  border:2px solid var(--ap-border2);
  position:relative;
}
.ap-kol-card:hover .ap-kol-av { border-color:var(--ap-primary); box-shadow:0 0 16px var(--ap-glow); }
.ap-kol-av .ap-avatar-auto { border-radius:50%; font-size:1.2em; }
.ap-kol-av .ap-avatar-img { border-radius:50%; }
.ap-verified {
  position:absolute; bottom:0; right:0;
  width:18px; height:18px; background:var(--ap-primary); color:#000;
  border-radius:50%; font-size:9px; font-weight:900;
  display:flex; align-items:center; justify-content:center;
}
.ap-kol-name { font-size:13px; font-weight:700; color:var(--ap-text); margin-bottom:3px; }
.ap-kol-name a { color:inherit; text-decoration:none; }
.ap-kol-name a:hover { color:var(--ap-secondary); }
.ap-kol-role { font-size:11px; color:var(--ap-text-dim); margin-bottom:4px; }
.ap-kol-followers { font-size:11px; color:var(--ap-primary); font-weight:600; margin-bottom:12px; }
.ap-follow-btn {
  width:100%; padding:6px 0;
  border:1px solid var(--ap-border2); border-radius:7px;
  background:transparent; color:var(--ap-text-dim);
  font-size:12px; font-weight:600; cursor:pointer;
  font-family:inherit; transition:all 0.2s;
}
.ap-follow-btn:hover, .ap-follow-btn.following { border-color:var(--ap-primary); color:var(--ap-secondary); background:var(--ap-glow-big); }

/* ===== LISTING CARD ===== */
.ap-listing-card {
  background:var(--ap-dark-bg3); border:1px solid var(--ap-border);
  border-radius:12px; overflow:hidden; cursor:pointer; transition:all 0.22s;
  position:relative;
}
.ap-listing-card:hover { border-color:var(--ap-primary); transform:translateY(-3px); box-shadow:0 8px 24px rgba(200,146,42,0.07); }
.ap-listing-sold { opacity:.6; }
.ap-listing-sold-badge {
  position:absolute; top:10px; right:10px; z-index:3;
  background:#c0392b; color:#fff; padding:2px 8px;
  border-radius:4px; font-size:10px; font-weight:800;
}
.ap-listing-thumb { aspect-ratio:4/3; overflow:hidden; background:radial-gradient(ellipse at center, #181000, #0d0900); display:flex; align-items:center; justify-content:center; }
.ap-listing-info { padding:10px 12px 12px; }
.ap-listing-type {
  display:inline-block; padding:2px 8px; border-radius:4px;
  font-size:9px; font-weight:800; text-transform:uppercase; margin-bottom:6px;
}
.ap-type-sell { background:rgba(200,146,42,0.15); color:var(--ap-secondary); border:1px solid var(--ap-border2); }
.ap-type-exchange { background:rgba(41,128,185,0.15); color:#5dade2; border:1px solid rgba(41,128,185,0.2); }
.ap-type-wanted { background:rgba(22,160,133,0.15); color:#1abc9c; border:1px solid rgba(22,160,133,0.2); }
.ap-type-rent { background:rgba(142,68,173,0.15); color:#9b59b6; border:1px solid rgba(142,68,173,0.2); }
.ap-listing-name { font-size:13px; font-weight:600; color:var(--ap-text); line-height:1.35; margin-bottom:5px; }
.ap-listing-name a { color:inherit; text-decoration:none; }
.ap-listing-cond { font-size:10px; color:var(--ap-text-dim); margin-bottom:6px; }
.ap-listing-bot { display:flex; align-items:center; justify-content:space-between; }
.ap-listing-price { font-size:14px; font-weight:800; color:var(--ap-secondary); }
.ap-listing-price small { font-size:10px; font-weight:600; color:var(--ap-text-dim); }
.ap-listing-loc { font-size:10px; color:var(--ap-text-dim); }

/* ===== EVENT CARD ===== */
.ap-event-card { background:var(--ap-dark-bg3); border:1px solid var(--ap-border); border-radius:12px; overflow:hidden; cursor:pointer; transition:all 0.22s; text-decoration:none; color:inherit; display:block; }
.ap-event-card:hover { border-color:var(--ap-primary); transform:translateY(-3px); }
.ap-event-thumb { aspect-ratio:16/9; background:radial-gradient(ellipse at center, #181000, #0d0900); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.ap-event-body { padding:12px; }
.ap-event-status { display:inline-block; padding:2px 8px; border-radius:4px; font-size:9px; font-weight:800; text-transform:uppercase; margin-bottom:6px; }
.ap-status-upcoming { background:rgba(200,146,42,0.15); color:var(--ap-secondary); }
.ap-status-ongoing  { background:rgba(22,160,133,0.15); color:#1abc9c; }
.ap-status-completed{ background:rgba(100,100,100,0.15); color:#888; }
.ap-event-body h3 { font-size:13px; font-weight:600; color:var(--ap-text); margin-bottom:6px; line-height:1.4; }
.ap-event-date, .ap-event-venue, .ap-event-ticket { font-size:11px; color:var(--ap-text-dim); margin-bottom:3px; }

/* ===== CATEGORY GRID ===== */
.ap-cat-grid { display:grid; gap:10px; }
.ap-cat-card {
  background:var(--ap-dark-bg3); border:1px solid var(--ap-border);
  border-radius:12px; padding:18px 8px 14px;
  text-align:center; cursor:pointer; transition:all 0.22s;
  text-decoration:none; color:inherit; display:flex; flex-direction:column; align-items:center;
}
.ap-cat-card:hover { border-color:var(--ap-primary); transform:translateY(-4px); background:var(--ap-dark-bg4); box-shadow:0 8px 24px rgba(200,146,42,0.08); }
.ap-cat-icon { font-size:28px; margin-bottom:10px; display:block; }
.ap-cat-name { font-size:11px; font-weight:600; color:var(--ap-text-mid); line-height:1.35; }
.ap-cat-card:hover .ap-cat-name { color:var(--ap-secondary); }
.ap-cat-count { font-size:10px; color:var(--ap-text-dim); margin-top:3px; }

/* ===== BRANDS ===== */
.ap-brands-row { background:var(--ap-dark-bg2); border-top:1px solid var(--ap-border); border-bottom:1px solid var(--ap-border); padding:22px 0; }
.ap-brands-row > div { display:flex; align-items:center; gap:0; }
.ap-brands-label { font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:2px; color:var(--ap-text-dim); white-space:nowrap; padding-right:24px; border-right:1px solid var(--ap-border); margin-right:24px; flex-shrink:0; }
.ap-brands-list { display:flex; align-items:center; gap:32px; flex:1; overflow:hidden; flex-wrap:wrap; }
.ap-brand-item { font-size:14px; font-weight:800; color:var(--ap-text-dim); letter-spacing:1px; cursor:pointer; white-space:nowrap; flex-shrink:0; transition:color 0.2s; text-decoration:none; display:flex; align-items:center; }
.ap-brand-item:hover { color:var(--ap-secondary); }
.ap-brand-item img { height:32px; width:auto; object-fit:contain; filter:grayscale(1) brightness(0.7); transition:filter 0.2s; }
.ap-brand-item:hover img { filter:grayscale(0) brightness(1); }
.ap-brand-name { font-size:14px; font-weight:800; color:var(--ap-text-dim); }
.ap-brands-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(120px, 1fr)); gap:12px; }

/* ===== SEARCH ===== */
.ap-search-widget { width:100%; }
.ap-search-form { position:relative; }
.ap-search-box {
  display:flex; align-items:center;
  background:var(--ap-dark-bg3); border:1px solid var(--ap-border2);
  border-radius:10px; overflow:hidden; transition:border-color 0.2s, box-shadow 0.2s;
}
.ap-search-box:focus-within { border-color:var(--ap-primary); box-shadow:0 0 0 3px var(--ap-glow-big); }
.ap-search-icon { padding:0 12px; font-size:16px; color:var(--ap-text-dim); flex-shrink:0; }
.ap-search-input {
  flex:1; padding:12px 0; background:transparent; border:none; outline:none;
  color:var(--ap-text); font-size:13px; font-family:inherit;
}
.ap-search-input::placeholder { color:var(--ap-text-dim); }
.ap-search-btn {
  padding:12px 20px; background:linear-gradient(135deg, var(--ap-primary), var(--ap-primary-dark));
  border:none; color:#000; font-size:13px; font-weight:700; cursor:pointer;
  transition:opacity 0.2s; font-family:inherit; white-space:nowrap;
}
.ap-search-btn:hover { opacity:.85; }
/* Live search dropdown */
.ap-search-dropdown {
  position:absolute; top:100%; left:0; right:0; z-index:200;
  background:var(--ap-dark-bg2); border:1px solid var(--ap-border2);
  border-top:none; border-radius:0 0 10px 10px; max-height:320px; overflow-y:auto;
  box-shadow:0 8px 32px rgba(0,0,0,0.5);
}
.ap-search-result-item { display:flex; align-items:center; gap:12px; padding:10px 14px; cursor:pointer; text-decoration:none; color:inherit; transition:background 0.15s; }
.ap-search-result-item:hover { background:var(--ap-glow-big); }
.ap-search-result-type { font-size:10px; color:var(--ap-primary); font-weight:700; background:var(--ap-glow-big); padding:2px 6px; border-radius:4px; flex-shrink:0; }
.ap-search-result-title { font-size:13px; font-weight:600; color:var(--ap-text); }
.ap-search-result-excerpt { font-size:11px; color:var(--ap-text-dim); }

/* ===== FILTER BAR ===== */
.ap-filter-bar { margin-bottom:24px; }
.ap-filter-toggle {
  display:none; padding:10px 16px; background:var(--ap-dark-bg3);
  border:1px solid var(--ap-border2); border-radius:8px; cursor:pointer;
  font-size:13px; font-weight:600; color:var(--ap-text-mid);
  margin-bottom:10px;
}
.ap-filter-panel { display:flex; flex-wrap:wrap; gap:20px; background:var(--ap-dark-bg2); padding:16px; border-radius:10px; border:1px solid var(--ap-border); }
.ap-filter-group { flex:1; min-width:140px; }
.ap-filter-group label { display:block; font-size:11px; font-weight:700; color:var(--ap-secondary); text-transform:uppercase; letter-spacing:1px; margin-bottom:8px; }
.ap-filter-checks { display:flex; flex-direction:column; gap:5px; max-height:160px; overflow-y:auto; }
.ap-filter-check { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--ap-text-dim); cursor:pointer; }
.ap-filter-check input { accent-color:var(--ap-primary); }
.ap-filter-check:hover { color:var(--ap-text); }
.ap-filter-actions { display:flex; gap:8px; align-items:flex-end; }
.ap-btn-filter { padding:8px 18px; background:linear-gradient(135deg,var(--ap-primary),var(--ap-primary-dark)); border:none; border-radius:7px; color:#000; font-size:12px; font-weight:700; cursor:pointer; font-family:inherit; }
.ap-btn-reset  { padding:8px 18px; background:transparent; border:1px solid var(--ap-border2); border-radius:7px; color:var(--ap-text-dim); font-size:12px; cursor:pointer; font-family:inherit; }
.ap-btn-reset:hover { border-color:var(--ap-primary); color:var(--ap-secondary); }

/* ===== HERO ===== */
.ap-hero {
  background:var(--ap-dark-bg); position:relative; overflow:hidden;
  padding:72px 0 60px;
}
.ap-hero-bg {
  position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,146,42,0.13) 0%, transparent 55%), radial-gradient(ellipse at 10% 80%, rgba(176,101,29,0.08) 0%, transparent 45%);
}
.ap-hero-bg::after {
  content:''; position:absolute; inset:0;
  background-image: linear-gradient(rgba(200,146,42,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,146,42,0.04) 1px, transparent 1px);
  background-size:60px 60px;
}
.ap-hero .ap-container { display:grid; grid-template-columns:1fr 480px; gap:60px; align-items:center; position:relative; z-index:2; }
.ap-hero-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:2.5px; color:var(--ap-primary); margin-bottom:22px; }
.ap-hero-title { font-size:54px; font-weight:900; line-height:1.08; margin-bottom:20px; letter-spacing:-1.5px; color:var(--ap-text); }
.ap-gold { background:linear-gradient(90deg, var(--ap-secondary) 0%, var(--ap-text) 50%, var(--ap-secondary) 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.ap-hero-sub { font-size:14px; color:var(--ap-text-dim); line-height:1.9; margin-bottom:34px; max-width:440px; }
.ap-hero-btns { display:flex; gap:12px; margin-bottom:44px; flex-wrap:wrap; }
.ap-hero-stats { display:flex; gap:0; padding-top:30px; border-top:1px solid var(--ap-border); }
.ap-hstat { flex:1; padding:0 20px; border-right:1px solid var(--ap-border); }
.ap-hstat:first-child { padding-left:0; }
.ap-hstat:last-child { border-right:none; }
.ap-hstat-num { font-size:20px; font-weight:900; background:linear-gradient(90deg, var(--ap-secondary), var(--ap-primary)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:4px; }
.ap-hstat-lbl { font-size:11px; color:var(--ap-text-dim); line-height:1.3; }
/* Hero visual */
.ap-hero-vis-box { border-radius:20px; aspect-ratio:4/3; background:radial-gradient(ellipse at center, #1e1000 0%, #0a0800 100%); border:1px solid var(--ap-border2); position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; box-shadow:0 0 80px rgba(200,146,42,0.08), inset 0 0 60px rgba(200,146,42,0.04); }
.ap-vis-glow { position:absolute; inset:0; background:radial-gradient(ellipse at center, rgba(200,146,42,0.12) 0%, transparent 65%); }
.ap-vis-center { position:relative; width:220px; height:220px; }
.ap-vring { position:absolute; border-radius:50%; top:50%; left:50%; transform:translate(-50%,-50%); border:1px solid; animation:ap-vringanim 4s ease-in-out infinite; }
.ap-vring:nth-child(1){ width:56px;height:56px;border-color:rgba(200,146,42,0.9);animation-delay:0s; }
.ap-vring:nth-child(2){ width:96px;height:96px;border-color:rgba(200,146,42,0.5);animation-delay:.4s; }
.ap-vring:nth-child(3){ width:140px;height:140px;border-color:rgba(200,146,42,0.3);animation-delay:.8s; }
.ap-vring:nth-child(4){ width:188px;height:188px;border-color:rgba(200,146,42,0.15);animation-delay:1.2s; }
.ap-vring:nth-child(5){ width:218px;height:218px;border-color:rgba(200,146,42,0.07);animation-delay:1.6s; }
@keyframes ap-vringanim { 0%,100%{ opacity:.5; transform:translate(-50%,-50%) scale(1); } 50%{ opacity:1; transform:translate(-50%,-50%) scale(1.04); } }
.ap-vcore { position:absolute; top:50%;left:50%; transform:translate(-50%,-50%); width:36px;height:36px; border-radius:50%; background:radial-gradient(circle, var(--ap-text) 0%, var(--ap-primary) 50%, var(--ap-primary-dark) 100%); box-shadow:0 0 24px var(--ap-primary), 0 0 48px var(--ap-glow); }
.ap-vis-badge1 { position:absolute; bottom:16px; left:16px; background:rgba(8,8,8,0.85); backdrop-filter:blur(12px); border:1px solid var(--ap-border2); border-radius:10px; padding:10px 14px; display:flex; align-items:center; gap:10px; }
.ap-vb-dot { width:8px;height:8px;border-radius:50%;background:var(--ap-primary);animation:ap-gdot 2s infinite; }
@keyframes ap-gdot { 0%,100%{box-shadow:0 0 0 0 var(--ap-glow)} 50%{box-shadow:0 0 0 5px transparent} }
.ap-vb-txt { font-size:11px; color:var(--ap-text-mid); font-weight:600; }
.ap-vb-txt strong { color:var(--ap-secondary); }
.ap-vis-badge2 { position:absolute; top:16px; right:16px; background:linear-gradient(135deg, rgba(8,8,8,0.9) 0%, rgba(30,16,0,0.9) 100%); border:1px solid var(--ap-border2); border-radius:8px; padding:8px 14px; font-size:13px; font-weight:900; color:var(--ap-secondary); letter-spacing:-0.5px; }

/* ===== TRUST BAR ===== */
.ap-trust-bar { background:var(--ap-dark-bg2); border-top:1px solid var(--ap-border); border-bottom:1px solid var(--ap-border); padding:22px 0; }
.ap-trust-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.ap-trust-item { display:flex; align-items:center; gap:14px; padding:0 28px; border-right:1px solid var(--ap-border); }
.ap-trust-item:first-child { padding-left:0; }
.ap-trust-item:last-child { border-right:none; padding-right:0; }
.ap-trust-icon { width:44px;height:44px;border-radius:10px;flex-shrink:0; background:linear-gradient(135deg,rgba(200,146,42,0.12),rgba(200,146,42,0.04)); border:1px solid var(--ap-border2); display:flex;align-items:center;justify-content:center;font-size:20px; }
.ap-trust-text h4 { font-size:13px; font-weight:700; color:var(--ap-text); margin-bottom:2px; }
.ap-trust-text p { font-size:11px; color:var(--ap-text-dim); line-height:1.4; }

/* ===== CONTACT INFO ===== */
.ap-contact-info { }
.ap-contact-item { display:flex; align-items:flex-start; gap:8px; margin-bottom:8px; font-size:13px; color:var(--ap-text-dim); }
.ap-contact-icon { font-size:16px; flex-shrink:0; }
.ap-contact-item a { color:var(--ap-text-mid); text-decoration:none; transition:color 0.2s; }
.ap-contact-item a:hover { color:var(--ap-secondary); }
.ap-contact-socials { display:flex; gap:8px; margin-top:12px; flex-wrap:wrap; }
.ap-social-btn { display:inline-flex; align-items:center; gap:5px; padding:7px 14px; border-radius:7px; font-size:12px; font-weight:700; text-decoration:none; transition:all 0.2s; border:1px solid var(--ap-border2); color:var(--ap-text-dim); }
.ap-social-btn:hover { border-color:var(--ap-primary); color:var(--ap-secondary); background:var(--ap-glow-big); }
.ap-social-zalo { border-color:rgba(0,120,255,0.2); }
.ap-social-fb { border-color:rgba(24,119,242,0.2); }
.ap-social-yt { border-color:rgba(255,0,0,0.2); }

/* ===== PRICING TABLE ===== */
.ap-pricing-table { display:grid; grid-template-columns:repeat(auto-fit, minmax(180px,1fr)); gap:12px; margin-top:16px; }
.ap-pkg { background:var(--ap-dark-bg3); border:1px solid var(--ap-border); border-radius:12px; padding:18px; text-align:center; }
.ap-pkg-featured { border-color:var(--ap-primary); background:linear-gradient(135deg, rgba(200,146,42,0.1), rgba(200,146,42,0.03)); }
.ap-pkg-name { font-size:14px; font-weight:800; color:var(--ap-text); margin-bottom:8px; }
.ap-pkg-price { font-size:20px; font-weight:900; color:var(--ap-secondary); margin-bottom:6px; }
.ap-pkg-desc { font-size:12px; color:var(--ap-text-dim); margin-bottom:12px; }
.ap-pkg-btn { display:block; padding:8px 0; background:linear-gradient(135deg,var(--ap-primary),var(--ap-primary-dark)); border-radius:7px; color:#000; font-size:12px; font-weight:700; text-decoration:none; text-align:center; margin-top:10px; }

/* ===== NO RESULTS ===== */
.ap-no-results { grid-column:1/-1; text-align:center; padding:40px 20px; color:var(--ap-text-dim); font-size:14px; }

/* ===== GENERIC CARD ===== */
.ap-generic-card { background:var(--ap-dark-bg3); border:1px solid var(--ap-border); border-radius:12px; overflow:hidden; transition:all 0.22s; display:flex; gap:0; }
.ap-generic-card:hover { border-color:var(--ap-primary); transform:translateY(-2px); }
.ap-generic-thumb { width:100px; flex-shrink:0; overflow:hidden; background:radial-gradient(ellipse at center, #181000, #0d0900); }
.ap-generic-info { padding:14px; flex:1; }
.ap-generic-info h3 { font-size:13px; font-weight:600; color:var(--ap-text); margin-bottom:6px; }
.ap-generic-info h3 a { color:inherit; text-decoration:none; }
.ap-generic-info p { font-size:12px; color:var(--ap-text-dim); line-height:1.6; margin-bottom:8px; }
.ap-read-more { font-size:12px; color:var(--ap-primary); font-weight:600; text-decoration:none; }

/* ===== LOADING / PAGINATION ===== */
.ap-loading { text-align:center; padding:20px; color:var(--ap-text-dim); }
.ap-pagination { display:flex; justify-content:center; gap:8px; margin-top:32px; flex-wrap:wrap; }
.ap-pagination a, .ap-pagination span { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border:1px solid var(--ap-border); border-radius:8px; font-size:13px; font-weight:600; color:var(--ap-text-dim); text-decoration:none; transition:all 0.2s; }
.ap-pagination a:hover, .ap-pagination .current { border-color:var(--ap-primary); color:var(--ap-secondary); background:var(--ap-glow-big); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .ap-cols-4, .ap-cols-5, .ap-cols-6, .ap-cols-8 { grid-template-columns:repeat(3,1fr); }
  .ap-hero .ap-container { grid-template-columns:1fr; }
  .ap-hero-vis { display:none; }
  .ap-hero-title { font-size:38px; }
  .ap-trust-grid { grid-template-columns:repeat(2,1fr); }
  .ap-trust-item { border-right:none; border-bottom:1px solid var(--ap-border); padding:12px 0; }
  .ap-trust-item:nth-child(even) { border-right:none; }
}

@media (max-width: 767px) {
  .ap-cols-2, .ap-cols-3, .ap-cols-4, .ap-cols-5, .ap-cols-6, .ap-cols-8 { grid-template-columns:repeat(2,1fr); }
  .ap-hero-title { font-size:28px; }
  .ap-hero-btns { flex-direction:column; gap:8px; }
  .ap-hero-stats { flex-wrap:wrap; gap:10px; }
  .ap-hstat { flex:0 0 45%; border-right:none; padding:0; }
  .ap-filter-toggle { display:block; }
  .ap-filter-panel { display:none; }
  .ap-filter-panel.open { display:flex; }
  .ap-trust-grid { grid-template-columns:1fr; }
  .ap-pricing-table { grid-template-columns:1fr; }
  .ap-brands-list { gap:16px; flex-wrap:wrap; }
}

/* ===== ADDITIONAL STYLES ===== */
/* Listing sold overlay */
.ap-listing-sold-overlay {
  position:absolute; inset:0; background:rgba(0,0,0,0.7);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; font-weight:900; color:#fff; letter-spacing:2px;
  border-radius:4px; z-index:2;
}
/* Sold notice */
.ap-sold-notice { margin-top:14px; padding:12px 16px; background:rgba(46,204,113,0.1); border:1px solid rgba(46,204,113,0.2); border-radius:8px; color:#2ecc71; font-size:13px; font-weight:600; }
/* Event gallery */
.ap-event-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.ap-event-gallery-item { aspect-ratio:4/3; border-radius:10px; overflow:hidden; cursor:pointer; }
.ap-event-gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.3s; }
.ap-event-gallery-item:hover img { transform:scale(1.05); }
/* Brand hero */
.ap-brand-hero { display:flex; align-items:flex-start; gap:24px; }
.ap-brand-logo-wrap { width:120px; height:80px; display:flex; align-items:center; flex-shrink:0; }
.ap-brand-logo-wrap img { max-width:120px; max-height:80px; object-fit:contain; }
.ap-brand-av-auto { border-radius:12px !important; }
/* Follow btn large */
.ap-follow-btn-lg { padding:11px 24px; font-size:14px; border-radius:8px; }
/* KOL av large */
.ap-kol-av.large { width:120px; height:120px; border-radius:50%; margin:0 auto; }
/* Section heading row */
.ap-related-section .ap-section-heading { margin-bottom:0; }
/* Tags on archive */
.ap-tag-label { color:var(--ap-text-dim); }
