/* ══════════════════════════════════════════════════════════════
   AMI Fashion — ZEN-MINIMAL (shop-quan-ao-ami)
   Font: Cormorant Garamond (heading) + DM Sans (body)
   Tone: Near-monochrome / Sage accent
   Identity: ZEN-MINIMAL
   CSS prefix: am-
   ══════════════════════════════════════════════════════════════ */

/* ─── IMPORT FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --dark: #1a1916;
  --dark2: #252520;
  --border: #e8e5df;
  --border-light: #f0ede8;
  --text: #1a1916;
  --text-2: #6b6760;
  --text-3: #a8a59f;
  --accent: #6b8067;
  --accent-h: #556454;
  --accent-light: #eef1ee;
  --accent-mid: #7a9175;
  --taupe: #a9906b;
  --taupe-light: #f4efe7;
  --sans: 'DM Sans', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --topbar-h: 36px;
  --nav-h: 64px;
  --offset: calc(var(--topbar-h) + var(--nav-h));
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--sans); cursor: pointer; }
input, select, textarea { font-family: var(--sans); }

/* ─── CONTAINER ─────────────────────────────────────────────── */
.am-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

/* ─── SECTION PADDING ───────────────────────────────────────── */
.am-sec { padding: clamp(56px, 8vw, 112px) 0; }
.am-sec-sm { padding: clamp(32px, 5vw, 64px) 0; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.am-serif { font-family: var(--serif); }

.am-sec-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.3px;
}

.am-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: 10px;
}

/* ─── REVEAL ANIMATION ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal-d1] { transition-delay: 0.08s; }
[data-reveal-d2] { transition-delay: 0.16s; }
[data-reveal-d3] { transition-delay: 0.24s; }
[data-reveal-d4] { transition-delay: 0.32s; }

/* ══════════════════════════════════════════════════════════════
   TOPBAR (announcement — 1 dòng, ngoại lệ được phép)
   ══════════════════════════════════════════════════════════════ */
.am-topbar {
  height: var(--topbar-h);
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 110;
}
.am-topbar-dot { color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════════════════════
   NAV — Nav-8: Underline-Active Only (ZEN-MINIMAL)
   ══════════════════════════════════════════════════════════════ */
#am-nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: none;
  transition: box-shadow 0.3s ease;
}

.am-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(20px, 5vw, 72px);
  max-width: 1100px;
  margin: 0 auto;
}

.am-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

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

.am-nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.am-nav-links a:hover {
  color: var(--text);
}

.am-nav-links a.active {
  color: var(--text);
}

/* Underline chỉ trên active — Nav-8 signature */
.am-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text);
}

/* Nav actions */
.am-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.am-nav-icon-btn {
  background: none;
  border: none;
  padding: 6px;
  color: var(--text-2);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-nav-icon-btn:hover { color: var(--text); }
.am-nav-icon-btn svg { width: 18px; height: 18px; stroke-width: 1.5; }

.am-cart-badge {
  position: relative;
}
.am-cart-badge span {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger mobile */
.am-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.am-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.am-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.am-hamburger.open span:nth-child(2) { opacity: 0; }
.am-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav */
.am-nav-mob {
  display: none;
  position: fixed;
  top: var(--offset);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 32px clamp(20px, 5vw, 72px);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.am-nav-mob.open {
  transform: translateX(0);
}
.am-nav-mob ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
}
.am-nav-mob a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
}
.am-nav-mob a:hover { color: var(--accent); }

/* Nav search panel */
.am-search-panel {
  position: fixed;
  top: var(--offset);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 98;
  padding: 20px clamp(20px, 5vw, 72px);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.am-search-panel.open { transform: translateY(0); }

.am-search-panel form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--text);
}
.am-search-panel input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  padding: 8px 0;
}
.am-search-panel input::placeholder { color: var(--text-3); }
.am-search-panel button {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 8px 0 8px 16px;
}

/* ══════════════════════════════════════════════════════════════
   MAIN CONTENT OFFSET
   ══════════════════════════════════════════════════════════════ */
.am-page-body {
  padding-top: var(--offset);
}

/* ══════════════════════════════════════════════════════════════
   SEARCH ZONE — "Hero" thay thế cho Biến thể 2
   (Chỉ input + phụ đề — không lifestyle, không tagline marketing)
   ══════════════════════════════════════════════════════════════ */
.am-search-zone {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.am-search-zone-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
  display: block;
}

.am-search-zone form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  border-bottom: 1.5px solid var(--text);
  gap: 0;
}

.am-search-zone input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  padding: 12px 0;
}
.am-search-zone input::placeholder {
  color: var(--text-3);
  font-style: italic;
}
.am-search-zone button {
  background: none;
  border: none;
  color: var(--text-2);
  padding: 12px 0 12px 20px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.am-search-zone button:hover { color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   HOME SECTIONS (Biến thể 2 — category sections)
   ══════════════════════════════════════════════════════════════ */
.am-home-section {
  padding: clamp(40px, 6vw, 80px) 0;
}
.am-home-section + .am-home-section {
  border-top: 1px solid var(--border-light);
}

.am-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.am-sec-head-left {}

.am-sec-head-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.am-local-search {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  padding: 4px 0;
  width: 160px;
  transition: border-color 0.2s;
}
.am-local-search::placeholder { color: var(--text-3); }
.am-local-search:focus { border-bottom-color: var(--text); }

.am-view-all {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.am-view-all:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT GRID & CARDS — ZEN-MINIMAL
   ══════════════════════════════════════════════════════════════ */
.am-prod-grid {
  display: grid;
  gap: 32px 24px;
}
.am-prod-grid-4 { grid-template-columns: repeat(4, 1fr); }
.am-prod-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Product Card — ZEN-MINIMAL: no border, no shadow */
.am-prod-card {
  display: flex;
  flex-direction: column;
}

.am-prod-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--border-light);
}

.am-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.am-prod-card:hover .am-prod-img {
  opacity: 0.88;
  transform: scale(1.03);
}

/* Badge */
.am-prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--dark);
  color: #fff;
}
.am-prod-badge.sale {
  background: var(--accent);
}
.am-prod-badge.new {
  background: var(--taupe);
}
.am-prod-badge.hot {
  background: var(--dark);
}

/* Quick add (hover overlay) */
.am-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 25, 22, 0.82);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px;
  border: none;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.am-prod-card:hover .am-quick-add {
  transform: translateY(0);
}
.am-quick-add:hover { background: rgba(26, 25, 22, 0.95); }

/* Product body */
.am-prod-body {
  padding: 12px 0 0;
}

.am-prod-cat {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: 4px;
}

.am-prod-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 8px;
}
.am-prod-name a { color: var(--text); transition: color 0.2s; }
.am-prod-name a:hover { color: var(--accent); }

.am-prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.am-price {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
.am-price-sale {
  color: var(--accent);
  margin-right: 6px;
}
.am-price-orig {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: line-through;
}

/* Color dots */
.am-color-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.am-cdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
}

/* Empty state */
.am-empty-state {
  text-align: center;
  padding: 64px 24px;
  display: none;
}
.am-empty-state.show { display: block; }
.am-empty-state p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-3);
  margin-bottom: 20px;
}
.am-empty-state button {
  background: none;
  border: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
}
.am-empty-state button:hover { color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   FILTER TOOLBAR (san-pham.html) — Ngang, không sidebar
   ══════════════════════════════════════════════════════════════ */
.am-filter-wrap {
  padding: 20px 0 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

/* Category pills row */
.am-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.am-cat-pill {
  background: none;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 6px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.am-cat-pill:hover {
  border-color: var(--text-2);
  color: var(--text);
}
.am-cat-pill.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

/* Filter toolbar row */
.am-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
}

.am-filter-btn {
  background: none;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.am-filter-btn:hover, .am-filter-btn.has-filter {
  border-color: var(--text);
  color: var(--text);
}
.am-filter-btn::after {
  content: ' ▾';
  font-size: 9px;
}

/* Dropdown menu override */
.am-dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 16px;
  min-width: 200px;
  background: var(--surface);
}

.am-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  cursor: pointer;
}
.am-check-item input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Price range */
.am-price-slider-wrap { padding: 4px 0 12px; }
.am-price-slider-wrap label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: 12px;
}
.am-price-slider-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}
.am-price-display {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-2);
  margin-top: 8px;
}

/* Sort select */
.am-sort-select {
  background: none;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 6px 12px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6760' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.am-sort-select:hover { border-color: var(--text); }

/* Result count */
.am-result-count {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-3);
  margin-left: auto;
  white-space: nowrap;
}

/* Mobile filter trigger */
.am-filter-mobile-btn {
  background: none;
  border: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.am-filter-badge {
  background: var(--text);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 10px;
  display: none;
}
.am-filter-badge.show { display: inline-flex; }

/* Active filter chips */
.am-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0 16px;
  align-items: center;
}
.am-chips-row:empty { display: none; }
.am-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--accent-h);
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.am-chip:hover { background: #dce6db; }
.am-chip-x { font-size: 14px; line-height: 1; color: var(--accent); }

.am-clear-all {
  background: none;
  border: none;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
}
.am-clear-all:hover { color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   PAGINATION — Số trang cổ điển
   ══════════════════════════════════════════════════════════════ */
.am-pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 48px;
  padding-bottom: 16px;
}
.am-pagination .page-item {}
.am-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-2);
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}
.am-pagination .page-link:hover {
  border-color: var(--text);
  color: var(--text);
}
.am-pagination .page-item.active .page-link {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (dùng cho san-pham, ve-chung-toi, etc — không phải index)
   ══════════════════════════════════════════════════════════════ */
.am-page-hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(28px, 4vw, 56px);
  border-bottom: 1px solid var(--border-light);
}
.am-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 8px;
}
.am-page-hero p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL (chi-tiet-san-pham.html)
   ══════════════════════════════════════════════════════════════ */
.am-detail-wrap {
  padding: clamp(40px, 6vw, 80px) 0;
}
.am-detail-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}
.am-thumb-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.am-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--border-light);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.am-thumb.active, .am-thumb:hover { border-color: var(--text); }
.am-thumb img { width: 100%; height: 100%; object-fit: cover; }

.am-main-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--border-light);
}
.am-main-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Detail info */
.am-detail-info { padding-left: 40px; }
.am-detail-cat {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.am-detail-name {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.am-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.am-detail-price .am-price { font-size: 20px; font-weight: 400; }
.am-detail-price .am-price-sale { font-size: 20px; }
.am-detail-price .am-price-orig { font-size: 15px; }

.am-detail-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 20px 0;
}

.am-option-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
  display: block;
}

/* Color options */
.am-color-opts {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.am-color-opt {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.am-color-opt.active, .am-color-opt:hover {
  outline-color: var(--text);
}

/* Size options */
.am-size-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.am-size-opt {
  min-width: 42px;
  height: 38px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
}
.am-size-opt:hover { border-color: var(--text); color: var(--text); }
.am-size-opt.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

/* Buttons */
.am-btn-primary {
  display: block;
  width: 100%;
  padding: 15px 24px;
  background: var(--text);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  margin-bottom: 10px;
}
.am-btn-primary:hover { background: var(--accent); }

.am-btn-outline {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  margin-bottom: 20px;
}
.am-btn-outline:hover { border-color: var(--text); }

/* Trust badge trong product detail */
.am-trust-inline {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.am-trust-inline::before { content: '✓'; color: var(--accent); font-size: 11px; }

/* Detail tabs */
.am-detail-tabs {
  border-top: 1px solid var(--border-light);
  margin-top: 48px;
  padding-top: 32px;
}
.am-tab-btns { display: flex; gap: 32px; margin-bottom: 24px; }
.am-tab-btn {
  background: none;
  border: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 0 8px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.am-tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--text);
}
.am-tab-panel { display: none; }
.am-tab-panel.active { display: block; }
.am-tab-panel p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════════════
   CART (gio-hang.html)
   ══════════════════════════════════════════════════════════════ */
.am-cart-wrap {
  padding: clamp(40px, 6vw, 80px) 0;
}
.am-cart-table thead th {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-3);
  padding: 0 0 16px;
  border-bottom: 1px solid var(--border);
}
.am-cart-item td {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.am-cart-thumb {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: var(--border-light);
}
.am-cart-item-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
}
.am-cart-item-meta {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 4px;
}
.am-qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  width: fit-content;
}
.am-qty-btn {
  width: 32px;
  height: 36px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--text-2);
  cursor: pointer;
  transition: color 0.2s;
}
.am-qty-btn:hover { color: var(--text); }
.am-qty-val {
  width: 36px;
  text-align: center;
  font-size: 14px;
  border: none;
  background: none;
  outline: none;
  color: var(--text);
}
.am-cart-remove {
  background: none;
  border: none;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-3);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.am-cart-remove:hover { color: var(--text); }

/* Cart summary */
.am-cart-summary {
  background: var(--border-light);
  padding: 28px;
}
.am-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  margin-bottom: 12px;
}
.am-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

/* Coupon */
.am-coupon-box {
  margin: 16px 0;
  padding-top: 4px;
}
.am-coupon-input-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.am-coupon-input-row:focus-within { border-color: var(--text); }
.am-coupon-input-row input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--text);
  padding: 10px 0;
  text-transform: uppercase;
}
.am-coupon-input-row input::placeholder {
  color: var(--text-3);
  text-transform: none;
}
.am-coupon-input-row button {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 0 10px 14px;
  transition: color 0.2s;
}
.am-coupon-input-row button:hover { color: var(--accent-h); }
.am-coupon-msg {
  font-size: 12px;
  margin: 8px 0 0;
  min-height: 16px;
}
.am-coupon-msg.is-success { color: var(--accent); }
.am-coupon-msg.is-error { color: var(--danger, #b3554f); }

/* ══════════════════════════════════════════════════════════════
   COLLECTION (bo-suu-tap.html)
   ══════════════════════════════════════════════════════════════ */
.am-coll-hero {
  padding: clamp(64px, 10vw, 128px) 0;
  text-align: center;
}
.am-coll-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.1;
}
.am-coll-hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.am-coll-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.am-coll-item.reverse { direction: rtl; }
.am-coll-item.reverse > * { direction: ltr; }

.am-coll-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--border-light);
}
.am-coll-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.am-coll-content {
  padding: clamp(40px, 6vw, 80px);
}
.am-coll-content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}
.am-coll-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Text-only link button (ZEN-MINIMAL signature) */
.am-link-btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.am-link-btn:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT (ve-chung-toi.html) — Nơi tập kết toàn bộ nội dung marketing
   ══════════════════════════════════════════════════════════════ */

/* Hero về chúng tôi */
.am-about-hero {
  background: var(--dark2);
  color: #fff;
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
}
.am-about-hero-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.am-about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 20px;
}
.am-about-hero p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Story section */
.am-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.am-story-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--border-light);
}
.am-story-img img { width: 100%; height: 100%; object-fit: cover; }
.am-story-content {}
.am-story-content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
}
.am-story-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* Values grid */
.am-values {
  background: var(--taupe-light);
  padding: clamp(56px, 8vw, 112px) 0;
}
.am-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.am-value-item {}
.am-value-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--taupe);
  line-height: 1;
  margin-bottom: 12px;
}
.am-value-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.am-value-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
}

/* Why-choose-us */
.am-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.am-why-item {
  text-align: center;
  padding: 24px;
}
.am-why-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--accent);
}
.am-why-icon svg { width: 40px; height: 40px; stroke-width: 1; }
.am-why-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.am-why-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
}

/* Stat bar */
.am-stat-bar {
  background: var(--dark);
  padding: clamp(48px, 7vw, 96px) 0;
}
.am-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.am-stat-num {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.am-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Testimonials */
.am-testimonials {
  background: var(--border-light);
}
.am-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.am-testimonial {
  padding: 32px;
  background: var(--surface);
}
.am-testimonial-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.am-testimonial-text {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.am-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.am-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border-light);
  overflow: hidden;
}
.am-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.am-testimonial-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
}
.am-testimonial-role {
  font-size: 11px;
  color: var(--text-3);
}

/* Feature icon row (policy) */
.am-policy-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.am-policy-icon {
  margin: 0 auto 14px;
  color: var(--accent);
}
.am-policy-icon svg { width: 32px; height: 32px; stroke-width: 1.2; }
.am-policy-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.am-policy-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
}

/* About CTA */
.am-about-cta {
  background: var(--dark2);
  color: #fff;
  text-align: center;
  padding: clamp(64px, 9vw, 120px) 0;
}
.am-about-cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 12px;
}
.am-about-cta p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.am-btn-light {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: var(--dark);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.am-btn-light:hover { opacity: 0.88; color: var(--dark); }

/* ══════════════════════════════════════════════════════════════
   CONTACT (lien-he.html)
   ══════════════════════════════════════════════════════════════ */
.am-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.am-contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}
.am-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.am-contact-item-icon {
  flex-shrink: 0;
  color: var(--accent);
}
.am-contact-item-icon svg { width: 18px; height: 18px; stroke-width: 1.5; }
.am-contact-item-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.am-contact-item-val {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
}

/* Contact form */
.am-form-field {
  margin-bottom: 20px;
}
.am-form-label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.am-form-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  padding: 8px 0;
  transition: border-color 0.2s;
}
.am-form-input:focus { border-bottom-color: var(--text); }
.am-form-input::placeholder { color: var(--text-3); }
textarea.am-form-input { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES (chinh-sach-bao-mat, dieu-khoan)
   ══════════════════════════════════════════════════════════════ */
.am-legal-wrap {
  padding: clamp(40px, 6vw, 80px) 0;
  max-width: 720px;
}
.am-legal-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 8px;
}
.am-legal-wrap .am-last-updated {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 40px;
  display: block;
}
.am-legal-wrap h2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 12px;
}
.am-legal-wrap p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 14px;
}
.am-legal-wrap ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}
.am-legal-wrap ul li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER — 2-col minimal, lots of whitespace (ZEN-MINIMAL)
   ══════════════════════════════════════════════════════════════ */
.am-footer {
  background: var(--dark);
  padding: clamp(56px, 8vw, 96px) 0 clamp(32px, 4vw, 48px);
}
.am-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.am-footer-brand {}
.am-footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  display: block;
}
.am-footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 240px;
  margin-bottom: 20px;
}
.am-footer-socials {
  display: flex;
  gap: 16px;
}
.am-footer-socials a {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.am-footer-socials a:hover { color: rgba(255,255,255,0.7); }

.am-footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.am-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.am-footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.am-footer-col a:hover { color: rgba(255,255,255,0.85); }

.am-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.am-footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.am-footer-legal {
  display: flex;
  gap: 24px;
}
.am-footer-legal a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.am-footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════════════
   ZALO FLOAT BUTTON
   ══════════════════════════════════════════════════════════════ */
.am-zalo-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: #0068FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,104,255,0.35);
  transition: transform 0.2s;
}
.am-zalo-float:hover { transform: scale(1.1); }
.am-zalo-float svg { width: 26px; height: 26px; fill: #fff; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .am-prod-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .am-why { grid-template-columns: repeat(2, 1fr); }
  .am-stat-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .am-policy-row { grid-template-columns: repeat(2, 1fr); }
  .am-coll-item { grid-template-columns: 1fr; }
  .am-coll-item.reverse { direction: ltr; }
  .am-coll-content { padding: clamp(28px, 4vw, 48px); }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .am-nav-links { display: none; }
  .am-hamburger { display: flex; }
  .am-nav-mob { display: block; }

  .am-prod-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .am-prod-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }

  .am-story { grid-template-columns: 1fr; }
  .am-value-grid { grid-template-columns: 1fr; gap: 28px; }
  .am-testimonial-grid { grid-template-columns: 1fr; }
  .am-why { grid-template-columns: 1fr; }
  .am-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .am-policy-row { grid-template-columns: repeat(2, 1fr); }
  .am-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .am-contact-grid { grid-template-columns: 1fr; }
  .am-detail-wrap .row { flex-direction: column; }
  .am-detail-info { padding-left: 0; margin-top: 24px; }
  .am-detail-gallery { grid-template-columns: 60px 1fr; gap: 8px; }
  .am-footer-bottom { flex-direction: column; align-items: flex-start; }
  .am-topbar { font-size: 11px; gap: 12px; }
}

@media (max-width: 480px) {
  .am-prod-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
  .am-stat-grid { grid-template-columns: 1fr 1fr; }
  .am-sec-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .am-search-zone form { flex-direction: column; border-bottom: none; }
  .am-search-zone input { border-bottom: 1.5px solid var(--text); padding-bottom: 10px; }
  .am-search-zone button { align-self: flex-end; margin-top: 8px; }
  .am-filter-bar { display: none !important; }
  .am-topbar-dot { display: none; }
  .am-topbar span:not(:first-child) { display: none; }
}
