:root {
  color-scheme: dark;
  --navy-950: #020b17;
  --navy-900: #051426;
  --navy-850: #081c31;
  --navy-800: #0b253b;
  --cyan: #28c7df;
  --cyan-soft: #82e6f4;
  --yellow: #ffc432;
  --coral: #ff6655;
  --text: #f2f7fb;
  --muted: #8fa9bf;
  --border: #155b72;
  --border-warm: #6f5b1a;
  --focus: #fff1a6;
  --radius: 16px;
  --space: clamp(12px, 1.6vw, 24px);
  font-family: var(--font-ui);
}

* { box-sizing: border-box; scrollbar-color: var(--cyan) var(--navy-900); scrollbar-width: auto; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: var(--navy-900); }
*::-webkit-scrollbar-thumb { border: 2px solid var(--navy-900); border-radius: 10px; background: var(--cyan); }
*::-webkit-scrollbar-thumb:hover { background: var(--yellow); }
.catalog-bands { scrollbar-width: thin; }
.catalog-bands::-webkit-scrollbar { width: 6px; height: 6px; }

html { background: var(--navy-950); }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 52% 0%, rgb(15 93 117 / .18), transparent 38rem),
    linear-gradient(180deg, var(--navy-950), #031426);
  color: var(--text);
}
body.viewer-open { overflow: hidden; }
body.announcement-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.shop-home, .account-detail, .shop-footer {
  width: min(100% - 32px, 1740px);
  margin-inline: auto;
}
.shop-header {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 196 50 / .22);
}
.shop-logo { display: inline-flex; align-items: center; gap: 16px; font-size: clamp(20px, 2vw, 30px); font-weight: 800; letter-spacing: -.05em; }
.shop-logo span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
  background: var(--cyan);
  color: #03121d;
  font-size: 16px;
  letter-spacing: -.04em;
}
.shop-logo strong { color: var(--cyan); }
.shop-logo em { color: var(--text); font-style: normal; }
.shop-hotline {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid var(--border-warm);
  border-radius: 14px;
  color: var(--yellow);
  font-weight: 800;
  white-space: nowrap;
}

.shop-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
  min-height: 220px;
  margin: 32px 0 28px;
  padding: clamp(28px, 3vw, 48px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgb(20 83 105 / .52), rgb(8 28 49 / .94) 48%, rgb(28 46 41 / .65)),
    var(--navy-850);
  box-shadow: inset 0 1px 0 rgb(130 230 244 / .12);
}
.eyebrow { margin: 0 0 8px; color: var(--cyan-soft); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.shop-intro h1 { margin: 0; color: var(--cyan); font-size: clamp(30px, 4vw, 52px); line-height: 1; letter-spacing: -.06em; }
.shop-intro h1 em { color: var(--text); font-style: normal; }
.shop-intro-copy > p:last-child { margin: 14px 0 0; color: #b8c9d7; line-height: 1.55; }
.shop-intro-copy b { color: var(--yellow); }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-actions a {
  display: grid;
  min-height: 56px;
  place-items: center;
  padding: 10px 16px;
  border: 1px solid #1c73e8;
  border-radius: 14px;
  background: #1f6fe8;
  color: white;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}
.contact-actions a:first-child { grid-column: 1 / -1; border-color: var(--cyan); background: var(--cyan); color: #03131f; }
.contact-actions a:last-child { border-color: var(--yellow); background: var(--yellow); color: #151100; }

.catalog-search { position: relative; margin-bottom: 22px; }
.catalog-search input[type='search'] {
  width: 100%;
  min-height: 62px;
  padding: 0 78px 0 24px;
  border: 2px solid #d5e5ec;
  border-radius: var(--radius);
  background: #eef3f6;
  color: #102135;
}
.catalog-search input::placeholder { color: #71879a; opacity: 1; }
.catalog-search button {
  position: absolute;
  top: 6px;
  right: 7px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: var(--cyan);
  color: #00131e;
  font-size: 25px;
  cursor: pointer;
}
.catalog-search button svg, .detail-back svg, .image-viewer button svg { width: 20px; height: 20px; }
.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: 'heading filter';
  gap: 14px;
  align-items: center;
}
.catalog-heading { grid-area: heading; }
.catalog-filter { position: relative; grid-area: filter; justify-self: end; }
.catalog-filter summary { list-style: none; }
.catalog-filter summary::-webkit-details-marker { display: none; }
.catalog-filter-trigger, .catalog-filter-group a, .catalog-bands a, .catalog-pagination a {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 8px 20px;
  border: 1px solid var(--border-warm);
  border-radius: 12px;
  color: #d9eafb;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.catalog-filter-trigger { cursor: pointer; }
.catalog-filter-menu { position: absolute; z-index: 30; top: calc(100% + 8px); right: 0; width: min(320px, calc(100vw - 24px)); }
.catalog-filter-group a[aria-current='page'] { background: var(--yellow); color: #131000; }
.catalog-heading { display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.catalog-heading h2 { display: flex; align-items: center; gap: 12px; margin: 0; font-size: 25px; }
.catalog-heading h2::before { content: ''; width: 28px; height: 28px; border-radius: 5px; background: conic-gradient(var(--cyan) 0 25%, transparent 0 50%, var(--cyan) 0 75%, transparent 0); }
.catalog-heading h2 span { padding: 5px 10px; border-radius: 99px; background: var(--cyan); color: #00131d; font-size: 12px; }
.catalog-status { color: var(--muted); font-size: 12px; opacity: 0; }
.catalog-bands { display: flex; gap: 10px; margin: 22px 0 20px; padding: 14px 0 8px; overflow-x: auto; border-top: 1px solid rgb(255 196 50 / .22); }
.catalog-bands a[aria-current='page'] { border-color: var(--cyan); background: var(--cyan); color: #00131d; }

.account-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.account-card {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  background: rgb(4 20 36 / .94);
}
.account-cover-link { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #020913; }
.account-cover { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.account-cover-link > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgb(2 11 23 / .88);
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.account-card-info {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 8px 14px;
  padding: 16px;
}
.account-card-info h2 { grid-column: 1; margin: 0; font-size: 18px; }
.account-card-info p { margin: 0; color: var(--muted); font-size: 12px; }
.account-card-info p strong { color: var(--text); }
.account-state { grid-column: 2; grid-row: 1; text-align: right; }
.account-price { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid rgb(255 196 50 / .2); }
.account-price strong { margin-left: 10px; color: var(--coral) !important; font-size: 23px; }
.account-rental { grid-column: 1; }
.account-date { grid-column: 1; align-self: end; }
.account-detail-link { grid-column: 2; grid-row: 3 / 6; align-self: end; min-width: 80px; padding: 9px 12px; border: 1px solid var(--border-warm); border-radius: 10px; color: var(--yellow); font-size: 11px; font-weight: 800; text-align: center; text-transform: uppercase; }
.catalog-pagination { display: flex; justify-content: center; gap: 8px; margin: 28px 0; }
.catalog-pagination a[aria-current='page'] { background: var(--cyan); color: #00131d; }
.catalog-empty { padding: 60px 24px; border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }

.account-detail .shop-header { margin-bottom: 30px; }
.detail-back { margin: 0 0 22px; }
.detail-back a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding: 0 14px; border: 1px solid var(--border); border-radius: 10px; color: #cde9ff; font-size: 13px; font-weight: 700; }
.account-detail-grid { display: grid; grid-template-columns: minmax(0, 2.2fr) minmax(340px, .95fr); gap: 28px; }
.account-image-viewer-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  background: #020913;
  cursor: zoom-in;
}
.account-detail-image { display: block; width: 100%; height: 100%; max-height: 860px; object-fit: contain; }
.account-image-viewer-trigger > span { position: absolute; bottom: 14px; left: 50%; padding: 8px 12px; transform: translateX(-50%); border-radius: 9px; background: rgb(2 11 23 / .88); color: #dff9ff; font-size: 11px; font-weight: 800; white-space: nowrap; }
.account-detail-panel { padding: clamp(24px, 2.4vw, 38px); border: 1px solid var(--border); border-radius: var(--radius); background: var(--navy-850); }
.detail-status { display: inline-block; margin: 0 0 22px; padding: 8px 12px; border: 1px solid #168a78; border-radius: 10px; background: rgb(17 130 111 / .17); color: #61e7c5; font-size: 12px; font-weight: 800; }
.account-detail-panel h1 { margin: 0 0 24px; font-size: clamp(34px, 4vw, 48px); letter-spacing: -.05em; }
.detail-price { display: grid; gap: 7px; margin: 0 0 20px; padding: 24px; border: 1px solid var(--border-warm); border-radius: 15px; background: rgb(255 196 50 / .05); }
.detail-price span, .detail-price small { color: var(--muted); }
.detail-price strong { color: var(--coral); font-size: clamp(36px, 4vw, 52px); line-height: 1; }
.detail-facts { margin: 0 0 20px; }
.detail-facts div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px dashed rgb(143 169 191 / .22); }
.detail-facts dt { color: var(--muted); }
.detail-facts dd { margin: 0; font-weight: 800; text-align: right; }
.detail-note { margin: 18px 0 0; padding: 15px; border: 1px solid var(--border); border-radius: 10px; color: var(--muted); font-size: 11px; }

.shop-footer { display: flex; min-height: 116px; align-items: center; gap: 28px; margin-top: 30px; border-top: 1px solid rgb(255 196 50 / .22); color: var(--muted); }
.shop-logo--footer { font-size: 18px; }
.shop-logo--footer span { width: 42px; height: 42px; font-size: 12px; }
.shop-footer small { margin-left: auto; }

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgb(0 7 15 / .9);
}
.image-viewer[hidden] { display: none; }
.image-viewer-dialog { display: grid; width: min(100%, 1680px); height: min(100%, 1120px); grid-template-rows: auto minmax(0, 1fr) auto; overflow: hidden; border: 1px solid var(--cyan); border-radius: var(--radius); background: var(--navy-900); box-shadow: 0 24px 90px rgb(0 8 18 / .7); }
.image-viewer-header, .image-viewer-footer { display: flex; min-height: 72px; align-items: center; gap: 16px; padding: 12px 26px; }
.image-viewer-header { border-bottom: 1px solid rgb(143 169 191 / .2); }
.image-viewer-header > div { display: flex; align-items: center; gap: 16px; }
.image-viewer-header strong { font-size: 22px; }
.image-viewer-header span { color: var(--muted); font-size: 11px; }
.image-viewer-close {
  display: grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--navy-850);
  color: var(--text);
  cursor: pointer;
}
.image-viewer-close { margin-left: auto; }
.image-viewer-stage { position: relative; display: grid; min-height: 0; place-items: center; overflow: hidden; background: #010812; }
.image-viewer-image { display: block; width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: contain; user-select: none; }
.image-viewer-footer { justify-content: space-between; border-top: 1px solid rgb(143 169 191 / .2); }
.image-viewer-price { color: var(--muted); }
.image-viewer-price strong { margin-left: 12px; color: var(--coral); font-size: 22px; }
.image-viewer-detail { display: grid; min-height: 44px; place-items: center; padding: 0 20px; border: 1px solid var(--border-warm); border-radius: 10px; color: var(--yellow); font-size: 12px; font-weight: 800; text-transform: uppercase; }

@media (hover: hover) and (pointer: fine) {
  .account-card { transition: border-color .2s ease, transform .2s ease; }
  .account-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
  .account-card:hover .account-cover { transform: scale(1.035); }
  .shop-hotline:hover, .catalog-filter-group a:not([aria-current='page']):hover, .catalog-bands a:hover, .account-detail-link:hover { border-color: var(--yellow); color: var(--yellow); }
  .catalog-filter-trigger:hover, .catalog-filter-group a[aria-current='page']:hover { border-color: #fff0b3; color: #171000; }
}

@media (max-width: 1023px) {
  .account-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-intro { grid-template-columns: 1fr; }
  .catalog-toolbar { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: 'heading filter'; }
  .account-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .shop-home, .account-detail, .shop-footer { width: min(100% - 24px, 680px); }
  .shop-header { min-height: 54px; }
  .shop-logo { gap: 9px; font-size: 17px; }
  .shop-logo span { width: 33px; height: 33px; font-size: 10px; }
  .shop-hotline { min-height: 38px; padding: 0 10px; border-radius: 10px; font-size: 10px; }
  .shop-intro { gap: 16px; min-height: 0; margin: 13px 0 11px; padding: 13px; }
  .shop-intro h1 { font-size: 25px; }
  .shop-intro-copy > p:last-child { margin-top: 8px; font-size: 10px; line-height: 1.25; }
  .eyebrow { margin-bottom: 4px; font-size: 8px; }
  .contact-actions { gap: 6px; }
  .contact-actions a { min-height: 38px; padding: 6px; border-radius: 9px; font-size: 9px; }
  .catalog-search { margin-bottom: 14px; }
  .catalog-search input[type='search'] { min-height: 48px; padding: 0 60px 0 13px; border-width: 1px; border-radius: 12px; font-size: 10px; }
  .catalog-search button { top: 2px; right: 2px; width: 44px; height: 44px; border-radius: 9px; }
  .catalog-toolbar { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: 'heading filter'; gap: 9px; }
  .catalog-filter-trigger, .catalog-filter-group a, .catalog-bands a { min-height: 36px; padding: 6px 12px; border-radius: 9px; font-size: 9px; }
  .catalog-heading h2 { font-size: 17px; }
  .catalog-heading h2::before { width: 16px; height: 16px; }
  .catalog-heading h2 span { padding: 4px 7px; font-size: 8px; }
  .catalog-status { display: none; }
  .catalog-bands { margin: 8px 0 10px; padding: 0 0 5px; border-top: 0; }
  .account-grid { grid-template-columns: 1fr; gap: 14px; }
  .account-card-info { padding: 11px; }
  .account-price strong { font-size: 20px; }
  .account-rental { min-height: 15px; }
  .account-detail .shop-header { margin-bottom: 14px; }
  .detail-back { margin-bottom: 8px; }
  .detail-back a { min-height: 44px; padding: 0 8px; font-size: 9px; }
  .account-detail-grid { gap: 10px; }
  .account-image-viewer-trigger { aspect-ratio: 4 / 3; }
  .account-detail-image { height: 100%; object-fit: contain; }
  .account-image-viewer-trigger > span { bottom: 8px; padding: 5px 7px; font-size: 7px; }
  .account-detail-panel { padding: 14px; }
  .detail-status { margin-bottom: 12px; padding: 6px 8px; font-size: 8px; }
  .account-detail-panel h1 { margin-bottom: 14px; font-size: 26px; }
  .detail-price { margin-bottom: 8px; padding: 13px; }
  .detail-price strong { font-size: 31px; }
  .detail-price span, .detail-price small, .detail-facts { font-size: 9px; }
  .detail-facts div { padding: 9px 0; }
  .detail-note { margin-top: 8px; padding: 10px; font-size: 7px; }
  .shop-footer { display: none; }
  .image-viewer { padding: 10px; }
  .image-viewer-dialog { height: 100%; }
  .image-viewer-header { min-height: 52px; padding: 8px 13px; }
  .image-viewer-header strong { font-size: 16px; }
  .image-viewer-header > div { display: block; }
  .image-viewer-header span { display: block; font-size: 8px; }
  .image-viewer-footer { min-height: 60px; gap: 8px; padding: 8px 12px; }
  .image-viewer-price strong { font-size: 19px; }
  .image-viewer-detail { padding: 0 10px; font-size: 8px; }
}

/* Catalog redesign: dense game-store framing with a restrained cyan/gold system. */
:root {
  --catalog-bg: #020b17;
  --catalog-panel: #071a2b;
  --catalog-panel-2: #0a2236;
  --catalog-line: rgb(56 134 166 / .36);
  --catalog-cyan: #1fc9e6;
  --catalog-gold: #ffc12d;
  --catalog-orange: #ff644b;
}
html { scroll-behavior: smooth; }
body {
  background: radial-gradient(circle at 50% -10%, rgb(25 112 145 / .23), transparent 32rem), var(--catalog-bg);
}
.shop-home, .account-detail, .shop-footer { width: min(100% - 40px, 1360px); }
.shop-header {
  min-height: 70px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  border-bottom-color: rgb(49 125 153 / .25);
}
.shop-logo { gap: 11px; font-size: 22px; }
.shop-logo span { width: 42px; height: 42px; background: linear-gradient(145deg, #1fc9e6 0 58%, #ffc12d 59%); }
.shop-nav { display: flex; justify-content: center; gap: clamp(14px, 2.4vw, 38px); align-self: stretch; }
.shop-nav a { position: relative; display: inline-flex; min-height: 44px; align-items: center; color: #d5e2e9; font-size: 12px; font-weight: 700; white-space: nowrap; }
.shop-nav a::after { position: absolute; right: 10%; bottom: 0; left: 10%; height: 2px; transform: scaleX(0); transform-origin: center; background: var(--catalog-cyan); content: ''; transition: transform .2s ease; }
.shop-nav a:hover, .shop-nav a[aria-current='page'] { color: var(--catalog-cyan); }
.shop-nav a:hover::after, .shop-nav a[aria-current='page']::after { transform: scaleX(1); }
.shop-header-actions { display: flex; gap: 10px; }
.shop-hotline, .shop-zalo-button { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: 10px; font-size: 11px; font-weight: 900; white-space: nowrap; }
.shop-hotline { padding: 0 15px; border-color: rgb(255 193 45 / .45); background: rgb(9 31 49 / .8); color: #eef8fb; }
.shop-zalo-button { padding: 0 16px; border: 1px solid rgb(90 226 239 / .55); background: linear-gradient(180deg, #22cee7, #149fc4); color: #03121c; }
.shop-hotline svg, .shop-zalo-button svg { width: 15px; height: 15px; }
.shop-hero {
  position: relative;
  display: grid;
  min-height: 300px;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr) minmax(190px, .44fr);
  align-items: stretch;
  gap: 14px;
  margin: 18px 0 14px;
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid var(--catalog-line);
  border-radius: 14px;
  background: linear-gradient(110deg, #0a263b, rgb(5 22 37 / .92) 56%, #0b2631);
  box-shadow: inset 0 1px rgb(118 231 245 / .15), 0 18px 45px rgb(0 0 0 / .22);
}
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 590px; }
.hero-kicker, .catalog-kicker { display: flex; align-items: center; gap: 7px; margin: 0 0 11px; color: var(--catalog-cyan); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.hero-kicker span, .catalog-kicker span { width: 7px; height: 7px; border-radius: 50%; background: var(--catalog-gold); box-shadow: 0 0 12px var(--catalog-gold); }
.shop-hero h1 { max-width: 600px; margin: 0; color: #f3f8fb; font-size: clamp(30px, 3.2vw, 48px); line-height: 1.03; letter-spacing: -.055em; }
.shop-hero h1 em { display: block; color: var(--catalog-cyan); font-style: normal; }
.hero-visual { position: relative; z-index: 1; min-width: 0; overflow: hidden; border-radius: 11px; opacity: .9; }
.hero-visual img { display: block; width: 100%; height: 100%; min-height: 245px; object-fit: cover; object-position: center; filter: saturate(1.08) contrast(1.04); mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 84%, transparent 100%); }
.hero-visual::after { position: absolute; inset: 0; background: linear-gradient(90deg, #0a263b 0%, transparent 20%, transparent 74%, #0b2631 100%), linear-gradient(0deg, rgb(3 15 26 / .35), transparent 55%); content: ''; }
.hero-visual-glow { position: absolute; z-index: 2; right: 18%; bottom: 5%; width: 100px; height: 50px; border-radius: 50%; background: rgb(31 201 230 / .65); filter: blur(30px); }
.trust-strip, .benefit-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid rgb(48 122 153 / .34); background: linear-gradient(180deg, rgb(8 29 47 / .95), rgb(5 20 34 / .95)); }
.trust-strip { margin-bottom: 18px; border-radius: 11px; }
.trust-strip > div, .benefit-strip > div { display: flex; min-height: 62px; align-items: center; gap: 12px; padding: 12px 17px; border-right: 1px solid rgb(67 139 160 / .18); }
.trust-strip > div:last-child, .benefit-strip > div:last-child { border-right: 0; }
.trust-strip svg, .benefit-strip svg { width: 29px; height: 29px; flex: 0 0 auto; color: var(--catalog-cyan); }
.trust-strip span, .benefit-strip span { display: grid; gap: 2px; }
.trust-strip b, .benefit-strip b { color: #e1edf2; font-size: 11px; }
.trust-strip small, .benefit-strip small { color: #8da8b8; font-size: 9px; }
.catalog-section { scroll-margin-top: 18px; }
.catalog-search--wide { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 11px; min-height: 54px; margin: 0 0 20px; padding: 0 11px 0 17px; border: 1px solid rgb(66 132 155 / .32); border-radius: 11px; background: rgb(5 21 35 / .86); }
.catalog-search--wide > svg { width: 19px; height: 19px; color: #7fa6b7; }
.catalog-search--wide input[type='search'] { min-height: 44px; padding: 0; border: 0; outline: 0; background: transparent; color: #eaf7fb; font-size: 12px; }
.catalog-search--wide button { position: static; display: inline-flex; width: auto; min-height: 40px; align-items: center; gap: 8px; padding: 0 24px; border-radius: 9px; background: linear-gradient(180deg, #26cce4, #119dbd); color: #03131d; font-size: 11px; box-shadow: inset 0 1px rgb(255 255 255 / .3); }
.catalog-search--wide button svg { width: 15px; height: 15px; }
.catalog-search--wide .live-search-status { right: 130px; bottom: -17px; }
.catalog-toolbar { grid-template-columns: minmax(0, 1fr) auto; align-items: end; margin-top: 2px; }
.catalog-heading { display: block; }
.catalog-kicker { margin-bottom: 4px; color: #8daabd; font-size: 9px; letter-spacing: .12em; }
.catalog-heading h2 { gap: 8px; font-size: 22px; }
.catalog-heading h2::before { display: none; }
.catalog-heading h2 span { background: var(--catalog-cyan); }
.catalog-filter-trigger { min-height: 44px; border-color: rgb(255 193 45 / .55); background: transparent; color: var(--catalog-gold); }
.catalog-filter-menu { border-color: rgb(80 165 191 / .5); }
.catalog-bands { gap: 8px; margin: 13px 0 19px; padding: 0 0 7px; border-top: 0; }
.catalog-bands a { min-height: 38px; padding-inline: 16px; border-color: rgb(79 138 158 / .3); border-radius: 9px; background: rgb(8 27 44 / .72); }
.catalog-bands a[aria-current='page'] { border-color: var(--catalog-cyan); background: linear-gradient(180deg, #27cce5, #149fbe); color: #02151f; }
.catalog-bands a small { margin-left: 2px; opacity: .72; }
.catalog-hot-band { color: var(--catalog-gold) !important; }
.catalog-hot-band svg { width: 14px; height: 14px; }
.catalog-hot-band.is-active { border-color: #ff9d30 !important; background: linear-gradient(180deg, #ffbe42, #ec8d17) !important; color: #201500 !important; }
.account-grid { gap: 15px; }
.account-card { border-color: rgb(42 144 176 / .75); border-radius: 15px; background: linear-gradient(180deg, rgb(7 27 44 / .96), rgb(3 17 30 / .98)); box-shadow: 0 11px 25px rgb(0 0 0 / .14); }
.account-card.is-hot { border-color: rgb(255 162 43 / .82); }
.account-cover-link { aspect-ratio: 16 / 9; }
.account-cover-link::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgb(2 13 23 / .66)); content: ''; pointer-events: none; }
.account-cover-link > .account-image-hint { right: 10px; bottom: 9px; z-index: 2; padding: 5px 8px; background: rgb(2 11 23 / .85); font-size: 8px; text-transform: none; }
.account-badge { position: absolute; z-index: 3; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 4px; min-height: 26px; padding: 0 10px; border-radius: 7px; color: #fff; font-size: 10px; font-weight: 900; }
.account-badge svg { width: 13px; height: 13px; }
.account-badge--hot { background: linear-gradient(180deg, #ff8632, #e34e1c); }
.account-badge--new { background: linear-gradient(180deg, #2d9af2, #2370d7); }
.account-card-info { gap: 12px; padding: 14px 15px 14px; }
.account-card-title { display: flex; align-items: start; justify-content: space-between; gap: 9px; }
.account-card-info h2 { font-size: 17px; }
.account-date { display: flex; align-items: center; gap: 5px; margin-top: 5px !important; font-size: 9px !important; }
.account-date svg { width: 12px; height: 12px; color: #7c9daf; }
.account-state { display: inline-flex; min-height: 25px; align-items: center; gap: 5px; padding: 0 8px; border: 1px solid rgb(39 207 139 / .42); border-radius: 8px; color: #5ce09b !important; font-size: 9px !important; white-space: nowrap; }
.account-state i { width: 7px; height: 7px; border-radius: 50%; background: #25d27e; box-shadow: 0 0 7px #25d27e; }
.account-state.is-rented { border-color: rgb(255 181 48 / .5); color: #ffc451 !important; }
.account-state.is-rented i { background: #ffc451; box-shadow: 0 0 7px #ffc451; }
.account-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 10px; border-top: 1px solid rgb(105 150 166 / .16); }
.account-prices p { margin: 0; color: #93abb9; font-size: 10px; }
.account-prices p:last-child { text-align: right; }
.account-prices strong { display: block; margin-top: 4px; color: var(--catalog-orange); font-size: 20px; }
.account-prices p:last-child strong { color: var(--catalog-gold); font-size: 15px; }
.account-detail-link { min-height: 38px; justify-self: end; padding: 0 14px; border-color: rgb(255 193 45 / .65); border-radius: 10px; background: rgb(255 193 45 / .05); color: var(--catalog-gold); font-size: 10px; }
.account-detail-link svg { width: 14px; height: 14px; }
.benefit-strip { margin: 19px 0 24px; border-radius: 11px; }
.benefit-strip {
  min-height: 104px;
  margin-inline: auto;
  border-color: rgb(54 129 160 / .5);
  border-radius: 15px;
  background: linear-gradient(180deg, rgb(7 29 47 / .98), rgb(5 20 34 / .98));
  box-shadow: inset 0 1px rgb(129 222 244 / .08), 0 12px 28px rgb(0 8 18 / .14);
}
.benefit-strip > div {
  min-height: 102px;
  gap: 17px;
  padding: 17px 25px;
  border-right-color: rgb(73 143 166 / .26);
}
.benefit-strip > div > svg { width: 54px; height: 54px; color: #28c7df; }
.benefit-strip > div:nth-child(2) > svg { color: #e7b23f; }
.benefit-strip > div:nth-child(3) > svg, .benefit-strip > div:nth-child(4) > svg { color: #28c7df; }
.benefit-strip span { gap: 4px; }
.benefit-strip b { color: #e6f1f5; font-size: 13px; font-weight: 800; letter-spacing: -.015em; white-space: nowrap; }
.benefit-strip small { color: #91aebb; font-size: 11px; line-height: 1.35; }
.shop-footer { min-height: 94px; margin-top: 20px; }

@media (max-width: 1023px) {
  .shop-header { grid-template-columns: auto 1fr auto; gap: 14px; }
  .shop-nav { order: 4; grid-column: 1 / -1; min-height: 40px; overflow-x: auto; justify-content: flex-start; }
  .shop-hero { grid-template-columns: minmax(0, 1.1fr) minmax(190px, .8fr); }
  .trust-strip > div, .benefit-strip > div { padding-inline: 12px; }
  .benefit-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-strip > div:nth-child(2), .benefit-strip > div:nth-child(4) { border-right: 0; }
  .benefit-strip > div:nth-child(-n + 2) { border-bottom: 1px solid rgb(67 139 160 / .18); }
}
@media (max-width: 767px) {
  .shop-home, .account-detail, .shop-footer { width: min(100% - 24px, 680px); }
  .shop-header { min-height: 57px; grid-template-columns: auto 1fr auto; gap: 8px; padding: 7px 0 0; }
  .shop-logo { font-size: 16px; }
  .shop-logo span { width: 34px; height: 34px; }
  .shop-header-actions { gap: 5px; }
  .shop-hotline, .shop-zalo-button { width: 40px; min-height: 40px; padding: 0; }
  .shop-hotline span, .shop-zalo-button span { display: none; }
  .shop-nav { gap: 4px; margin-inline: -2px; padding: 0 0 3px; }
  .shop-nav a { min-height: 38px; padding-inline: 11px; font-size: 10px; }
  .shop-hero { display: block; min-height: 0; margin: 11px 0 10px; padding: 18px 16px 15px; border-radius: 14px; }
  .hero-copy { position: relative; z-index: 3; }
  .hero-kicker { font-size: 8px; }
  .shop-hero h1 { font-size: 27px; }
  .hero-visual { position: absolute; right: -20px; bottom: 88px; width: 64%; height: 150px; opacity: .38; }
  .hero-visual img { min-height: 150px; mask-image: linear-gradient(90deg, transparent, #000 32%, #000 82%, transparent); }
  .trust-strip, .benefit-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { margin-bottom: 11px; }
  .trust-strip > div, .benefit-strip > div { min-height: 52px; gap: 7px; padding: 8px 9px; }
  .trust-strip > div:nth-child(2), .trust-strip > div:nth-child(4), .benefit-strip > div:nth-child(2), .benefit-strip > div:nth-child(4) { border-right: 0; }
  .trust-strip > div:nth-child(-n + 2), .benefit-strip > div:nth-child(-n + 2) { border-bottom: 1px solid rgb(67 139 160 / .18); }
  .trust-strip svg, .benefit-strip svg { width: 21px; height: 21px; }
  .trust-strip b, .benefit-strip b { font-size: 8px; }
  .trust-strip small, .benefit-strip small { font-size: 7px; line-height: 1.25; }
  .catalog-search--wide { min-height: 48px; grid-template-columns: auto minmax(0, 1fr) auto; gap: 7px; margin-bottom: 14px; padding-left: 11px; }
  .catalog-search--wide > svg { width: 16px; height: 16px; }
  .catalog-search--wide input[type='search'] { min-height: 38px; font-size: 10px; }
  .catalog-search--wide button { min-height: 38px; padding: 0 11px; font-size: 9px; }
  .catalog-search--wide button span { display: none; }
  .catalog-toolbar { gap: 7px; }
  .catalog-kicker { font-size: 7px; }
  .catalog-heading h2 { font-size: 17px; }
  .catalog-filter-trigger { min-width: 45px; min-height: 42px; padding: 0 10px; }
  .catalog-filter-trigger span, .catalog-filter-trigger small { display: none; }
  .catalog-bands { margin: 9px 0 12px; gap: 6px; }
  .catalog-bands a { min-height: 38px; padding-inline: 12px; font-size: 8px; }
  .account-grid { gap: 12px; }
  .account-card-info { padding: 11px; }
  .account-card-info h2 { font-size: 15px; }
  .account-prices strong { font-size: 18px; }
  .account-detail-link { min-height: 42px; }
  .benefit-strip { margin: 13px 0 0; }
  .benefit-strip { min-height: 0; border-radius: 12px; }
  .benefit-strip > div { min-height: 76px; gap: 10px; padding: 12px 11px; }
  .benefit-strip > div > svg { width: 31px; height: 31px; }
  .benefit-strip b { font-size: 10px; white-space: normal; }
  .benefit-strip small { font-size: 8px; line-height: 1.3; }
  .shop-footer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .account-cover, .account-card { transition: none !important; transform: none !important; }
}

/* Approved compact bacsipubgshop interface */
:root {
  --navy-950: #03111d;
  --navy-900: #071827;
  --navy-850: #0b2132;
  --navy-800: #10283a;
  --cyan: #25c7df;
  --yellow: #ffc43d;
  --coral: #ff6555;
  --border: #17627a;
  --border-warm: #66551f;
  --radius: 18px;
}

body { font-family: var(--font-ui); text-rendering: optimizeLegibility; }
.shop-home, .account-detail, .shop-footer { width: min(100% - 40px, 1560px); }
.shop-header {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr;
  gap: 28px;
  border-bottom-color: rgb(37 199 223 / .18);
}
.shop-logo { gap: 12px; font-size: 22px; }
.shop-logo span { width: 44px; height: 44px; font-size: 13px; }
.shop-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; }
.shop-hotline {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 1px rgb(255 255 255 / .12), 0 9px 22px rgb(0 0 0 / .14);
}
.shop-hotline { border: 1px solid rgb(92 174 197 / .28); background: linear-gradient(180deg, rgb(16 45 63 / .9), rgb(6 25 39 / .97)); color: #d8e8ee; }
.shop-hotline svg, .contact-actions svg, .catalog-sorts svg, .account-detail-link svg { width: 15px; height: 15px; flex: 0 0 auto; }

.shop-intro {
  min-height: 170px;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: 50px;
  margin: 24px 0 18px;
  padding: 28px 30px;
  border-radius: 22px;
  background: linear-gradient(105deg, rgb(14 63 83 / .88), rgb(7 29 45 / .95) 64%, rgb(13 42 52 / .82));
  box-shadow: inset 0 1px rgb(142 234 245 / .12), 0 24px 60px rgb(0 0 0 / .13);
}
.eyebrow { margin-bottom: 7px; font-size: 10px; letter-spacing: .12em; }
.shop-intro h1 { max-width: 720px; color: var(--text); font-size: clamp(30px, 3.3vw, 42px); font-weight: 900; line-height: 1.05; }
.shop-intro h1 em { color: var(--cyan); }
.shop-intro-copy > p:last-child { margin-top: 10px; font-size: 12px; line-height: 1.5; }
.contact-actions { gap: 9px; }
.contact-actions a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-size: 12px;
  box-shadow: inset 0 1px rgb(255 255 255 / .2), 0 10px 22px rgb(0 0 0 / .13);
}
.contact-actions a:first-child { background: linear-gradient(180deg, #43d8e8, #18bad3); border-color: #57e0ed; }
.contact-actions a:nth-child(2) { background: linear-gradient(180deg, #438cf5, #276bd9); border-color: #5598f7; }
.contact-actions a:last-child { background: linear-gradient(180deg, #ffd76d, #ffba26); border-color: #ffe08c; }

.catalog-search { margin-bottom: 15px; }
.catalog-search input[type='search'] { min-height: 50px; padding: 0 66px 0 16px; border-width: 1px; border-radius: 13px; font-size: 12px; box-shadow: inset 0 1px 2px rgb(5 33 48 / .06); }
.catalog-search button { top: 4px; right: 4px; width: 42px; height: 42px; border: 1px solid #68e0ed; border-radius: 10px; background: linear-gradient(180deg, #43d8e8, #18bad3); box-shadow: inset 0 1px rgb(255 255 255 / .4), 0 7px 16px rgb(37 199 223 / .2); }
.live-search-status { position: absolute; right: 58px; bottom: -17px; min-height: 15px; margin: 0; color: var(--muted); font-size: 9px; }
.catalog-search.is-loading input { border-color: var(--cyan); }
[data-catalog-results] { transition: opacity .16s ease; }
.catalog-search.is-loading + [data-catalog-results] { opacity: .58; }
.catalog-toolbar { position: relative; z-index: 20; grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: 'heading filter'; gap: 9px; }
.catalog-heading h2 { gap: 9px; font-size: 21px; font-weight: 900; letter-spacing: -.035em; }
.catalog-heading h2::before { width: 20px; height: 20px; border-radius: 4px; }
.catalog-heading h2 span { padding: 4px 8px; font-size: 9px; }
.catalog-filter { min-width: 0; }
.catalog-filter-trigger {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid #ffe08c;
  border-radius: 11px;
  background: linear-gradient(180deg, #ffd76d, #ffba26);
  color: #171000;
  box-shadow: inset 0 1px rgb(255 255 255 / .4), 0 8px 18px rgb(255 184 30 / .14);
  font-size: 12px;
  font-weight: 900;
  user-select: none;
}
.catalog-filter-trigger > svg { width: 15px; height: 15px; flex: 0 0 auto; }
.catalog-filter-trigger small { max-width: 170px; overflow: hidden; color: rgb(23 16 0 / .66); font-size: 9px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.catalog-filter-trigger .catalog-filter-chevron { width: 13px; height: 13px; margin-left: 2px; transition: transform .2s ease; }
.catalog-filter[open] .catalog-filter-chevron { transform: rotate(180deg); }
.catalog-filter-menu {
  padding: 10px;
  border: 1px solid rgb(65 145 169 / .45);
  border-radius: 14px;
  background: linear-gradient(180deg, #0b293a, #051823);
  box-shadow: 0 22px 50px rgb(0 0 0 / .38), inset 0 1px rgb(255 255 255 / .06);
  transform-origin: top right;
}
.catalog-filter-group + .catalog-filter-group { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgb(104 184 204 / .16); }
.catalog-filter-group > p { margin: 0 0 7px; color: #9bbdca; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.catalog-filter-group nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.catalog-filter-group:last-child nav { grid-template-columns: 1fr; }
.catalog-filter-group a, .catalog-bands a, .catalog-pagination a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 14px;
  border-color: rgb(101 163 183 / .28);
  border-radius: 11px;
  background: linear-gradient(180deg, rgb(13 42 59 / .82), rgb(4 21 34 / .96));
  color: #d8e7ed;
  font-size: 10px;
  box-shadow: inset 0 1px rgb(255 255 255 / .05);
}
.catalog-filter-group a { justify-content: space-between; padding-inline: 11px; font-size: 11px; }
.catalog-filter-group a svg { width: 13px; height: 13px; opacity: 0; }
.catalog-filter-group a[aria-current='page'] { border-color: #ffe08c; background: linear-gradient(180deg, #ffd76d, #ffba26); color: #171000; box-shadow: inset 0 1px rgb(255 255 255 / .4), 0 8px 18px rgb(255 184 30 / .14); }
.catalog-filter-group a[aria-current='page'] svg { opacity: 1; }
.catalog-bands { gap: 7px; margin: 10px 0 14px; padding: 0 0 6px; border-top: 0; }
.catalog-bands a { min-height: 34px; padding-inline: 13px; }
.catalog-bands a[aria-current='page'] { border-color: #69e2ee; background: linear-gradient(180deg, #43d8e8, #1ebbd2); box-shadow: inset 0 1px rgb(255 255 255 / .35), 0 7px 16px rgb(37 199 223 / .14); }

.account-grid { gap: 14px; }
.account-card { border-color: rgb(37 199 223 / .74); border-radius: 15px; background: rgb(3 17 29 / .95); }
.account-cover-link { aspect-ratio: 16 / 9; }
.account-cover-link > span { right: 9px; bottom: 8px; padding: 5px 8px; border-radius: 7px; font-size: 8px; text-transform: none; }
.account-card-info { grid-template-rows: auto auto auto auto; gap: 6px 10px; padding: 11px 12px 12px; }
.account-card-info h2 { font-size: 14px; letter-spacing: -.02em; }
.account-card-info p { font-size: 9px; }
.account-state { align-self: center; color: #76a6b8 !important; }
.account-price { padding-top: 7px; border-top-color: rgb(255 196 61 / .14); }
.account-price strong { margin-left: 6px; font-size: 19px; }
.account-rental { min-height: 14px; }
.account-detail-link { min-width: 91px; min-height: 32px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 6px 10px; border-color: rgb(255 196 61 / .55); border-radius: 9px; background: linear-gradient(180deg, rgb(255 196 61 / .09), rgb(255 196 61 / .025)); font-size: 8px; }
.account-detail-link svg { width: 11px; height: 11px; }
.catalog-empty { padding: 46px 20px; }

.account-detail-grid { grid-template-columns: minmax(0, 1.7fr) minmax(330px, .8fr); }
.account-detail-panel h1 { font-weight: 900; overflow-wrap: anywhere; }
.account-description { margin: 0 0 12px; padding: 13px 14px; border: 1px solid rgb(37 199 223 / .18); border-radius: 12px; background: rgb(37 199 223 / .045); }
.account-description h2 { margin: 0 0 6px; color: #8adce6; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.account-description p { margin: 0; color: #c6d8e1; font-size: 11px; line-height: 1.55; white-space: pre-line; overflow-wrap: anywhere; }
.detail-back a, .image-viewer-detail, .image-viewer-close { box-shadow: inset 0 1px rgb(255 255 255 / .06); }

@media (min-width: 1024px) {
  body:has(.account-detail) {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  body:has(.account-detail) > main { flex: 1; }
  .account-detail .shop-header { margin-bottom: 16px; }
  .detail-back { margin-bottom: 14px; }
  .detail-back a { min-height: 40px; font-size: 11px; }
  .account-detail-grid { align-items: start; gap: 22px; }
  .account-image-viewer-trigger { height: clamp(500px, calc(100vh - 260px), 600px); }
  .account-detail-image { max-height: none; }
  .account-image-viewer-trigger > span { bottom: 10px; padding: 6px 9px; font-size: 9px; }
  .account-detail-panel { padding: 20px; }
  .detail-status { margin-bottom: 12px; padding: 6px 10px; font-size: 10px; }
  .account-detail-panel .eyebrow { margin-bottom: 5px; font-size: 9px; }
  .account-detail-panel h1 { margin-bottom: 13px; font-size: 34px; }
  .detail-price { gap: 4px; margin-bottom: 12px; padding: 14px; border-radius: 12px; }
  .detail-price span { font-size: 11px; }
  .detail-price strong { font-size: 36px; line-height: 1.05; }
  .detail-price small { font-size: 9px; }
  .detail-facts { margin-bottom: 12px; font-size: 11px; }
  .detail-facts div { gap: 14px; padding: 9px 0; }
  .account-detail-panel .contact-actions { gap: 7px; }
  .account-detail-panel .contact-actions a { min-height: 40px; font-size: 10px; }
  .detail-note { margin-top: 10px; padding: 10px 12px; font-size: 9px; }
  body:has(.account-detail) .shop-footer { min-height: 96px; margin-top: 20px; }
}

.shop-footer { display: grid; min-height: 128px; grid-template-columns: 1fr auto; gap: 36px; }
.shop-footer > div p { margin: 7px 0 0; font-size: 10px; }
.shop-footer small { margin-left: 0; }

/* Stack desktop social promos without taking space from the catalog layout. */
.floating-social-banners {
  position: fixed;
  z-index: 2147483000;
  top: auto;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 12px;
  width: 200px;
  min-width: 0;
}
.floating-facebook-banner,
.floating-zalo-banner {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  transform: none;
  border-radius: 0;
  filter: drop-shadow(0 16px 28px rgb(0 0 0 / .42));
  transition: transform .22s ease, filter .22s ease;
}
.floating-facebook-banner img,
.floating-zalo-banner img { display: block; width: 100%; height: auto; }
.floating-facebook-banner:focus-visible,
.floating-zalo-banner:focus-visible { outline: 3px solid var(--focus); outline-offset: 5px; }

.mobile-contact-bar { display: none; }

.account-detail-gallery { min-width: 0; display: grid; align-content: start; gap: 10px; }
.account-gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: 8px; }
.account-gallery-thumb { min-width: 0; padding: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 9px; background: #020913; cursor: pointer; opacity: .7; transition: border-color .2s ease, opacity .2s ease, transform .2s ease; }
.account-gallery-thumb img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.account-gallery-thumb:hover, .account-gallery-thumb.is-active { border-color: var(--yellow); opacity: 1; }
.account-gallery-thumb:hover { transform: translateY(-2px); }
@media (max-width: 700px) {
  .account-gallery-thumbs { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 5px; }
}
.shop-announcement {
  width: min(520px, calc(100% - 24px));
  max-width: 520px;
  max-height: calc(100dvh - 24px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(37 199 223 / .34);
  border-radius: 28px;
  background: transparent;
  color: var(--text);
  box-shadow: 0 30px 100px rgb(0 0 0 / .55);
}
.shop-announcement::backdrop {
  background: rgb(0 7 15 / .76);
  backdrop-filter: blur(4px);
}
.shop-announcement-card {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 6vw, 46px) 30px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 15% 0%, rgb(37 199 223 / .13), transparent 45%),
    linear-gradient(155deg, #0a1d32, #050d1a 72%);
  text-align: center;
}
.shop-announcement-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgb(161 184 205 / .28);
  border-radius: 50%;
  background: rgb(4 17 31 / .72);
  color: #c4d4e2;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.shop-announcement-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.shop-announcement-close:hover { transform: rotate(90deg); background: rgb(32 54 76 / .9); color: #fff; }
.shop-announcement-kicker {
  margin: 0 0 12px;
  color: var(--cyan-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.shop-announcement-card h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.shop-announcement-callout {
  margin: 18px 0 10px;
  padding: 8px 15px;
  border: 1px solid rgb(255 196 50 / .45);
  border-radius: 999px;
  background: rgb(255 196 50 / .12);
  color: #ffd866;
  font-size: 15px;
  font-weight: 900;
}
.shop-announcement-description {
  margin: 0 0 24px;
  color: #a8bbca;
  font-size: 13px;
  font-weight: 700;
}
.shop-announcement-description span { margin-inline: 5px; color: var(--cyan); }
.shop-announcement-zalo,
.shop-announcement-dismiss {
  width: min(100%, 330px);
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.shop-announcement-zalo {
  border: 1px solid #4e9bff;
  background: linear-gradient(180deg, #278bfa, #1264d6);
  color: #fff;
  box-shadow: 0 12px 24px rgb(17 108 229 / .25), inset 0 1px rgb(255 255 255 / .3);
}
.shop-announcement-zalo .zalo-brand-icon { width: 25px; height: 25px; object-fit: contain; }
.shop-announcement-dismiss {
  margin-top: 12px;
  border: 1px solid rgb(153 169 193 / .28);
  background: #536073;
  color: #f3f7fb;
  cursor: pointer;
  box-shadow: inset 0 1px rgb(255 255 255 / .14);
}
.shop-announcement-dismiss svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (hover: hover) and (pointer: fine) {
  .shop-announcement-zalo:hover,
  .shop-announcement-dismiss:hover { transform: translateY(-2px); filter: brightness(1.08); }
}

@media (hover: hover) and (pointer: fine) {
  .floating-facebook-banner:hover,
  .floating-zalo-banner:hover { transform: scale(1.045); filter: drop-shadow(0 18px 34px rgb(0 0 0 / .56)); }
}

@media (hover: hover) and (pointer: fine) {
  .shop-hotline:hover, .contact-actions a:hover, .catalog-filter-trigger:hover, .catalog-filter-group a:hover, .catalog-bands a:hover, .account-detail-link:hover { transform: translateY(-2px); }
}

@media (max-width: 1023px) {
  .shop-header { grid-template-columns: auto 1fr; gap: 10px 18px; padding-block: 10px; }
  .shop-header-actions { grid-column: 2; grid-row: 1; }
  .shop-intro { grid-template-columns: 1fr; gap: 18px; }
  .contact-actions { max-width: 520px; }
  .account-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .shop-home, .account-detail, .shop-footer { width: min(100% - 24px, 680px); }
  .shop-header { min-height: 0; grid-template-columns: auto 1fr; gap: 8px 10px; padding: 9px 0 7px; }
  .shop-logo { gap: 8px; font-size: 16px; }
  .shop-logo span { width: 34px; height: 34px; font-size: 9px; }
  .shop-header-actions { gap: 6px; }
  .shop-hotline { min-height: 38px; padding: 0 10px; border-radius: 10px; font-size: 8px; }
  .shop-hotline { width: 38px; padding: 0; }
  .shop-hotline span { display: none; }
  .shop-intro { margin: 11px 0 10px; padding: 16px; border-radius: 15px; }
  .shop-intro h1 { font-size: 27px; }
  .shop-intro-copy > p:last-child { font-size: 9px; line-height: 1.42; }
  .contact-actions a { min-height: 40px; font-size: 8px; }
  .catalog-search { margin-bottom: 12px; }
  .catalog-search input[type='search'] { min-height: 46px; font-size: 10px; }
  .catalog-search button { top: 3px; width: 40px; height: 40px; }
  .live-search-status { right: 0; bottom: -15px; font-size: 7px; }
  .catalog-toolbar { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: 'heading filter'; gap: 7px; }
  .catalog-heading h2 { font-size: 16px; }
  .catalog-filter-trigger { min-width: 44px; min-height: 44px; padding: 0 11px; font-size: 10px; }
  .catalog-filter-trigger small { display: none; }
  .catalog-filter-trigger .catalog-filter-chevron { margin-left: 0; }
  .catalog-filter-menu { width: min(300px, calc(100vw - 24px)); }
  .catalog-filter-group a { min-height: 42px; font-size: 10px; }
  .catalog-bands a { min-height: 40px; font-size: 8px; }
  .catalog-bands { margin-top: 8px; }
  .account-grid { grid-template-columns: 1fr; gap: 12px; }
  .account-card-info { padding: 10px 11px 11px; }
  .account-price strong { font-size: 18px; }
  .shop-footer { display: none; }
  .image-viewer { padding: 8px; }
  .floating-social-banners { display: none; }

  .shop-announcement { width: calc(100% - 24px); border-radius: 24px; }
  .shop-announcement-card { padding: 28px 18px 22px; }
  .shop-announcement-close { top: 10px; right: 10px; width: 34px; height: 34px; }
  .shop-announcement-kicker { margin-bottom: 10px; font-size: 9px; }
  .shop-announcement-card h2 { font-size: 28px; }
  .shop-announcement-callout { margin-top: 15px; font-size: 13px; }
  .shop-announcement-description { margin-bottom: 20px; font-size: 11px; }
  .shop-announcement-zalo, .shop-announcement-dismiss { min-height: 52px; font-size: 13px; }

  .shop-hotline, .contact-actions a,
  .catalog-filter-trigger, .catalog-filter-group a, .catalog-bands a,
  .account-detail-link, .catalog-pagination a { min-height: 44px; }
  .shop-hotline { width: 44px; }
  .catalog-search button { width: 44px; height: 44px; }
}

@media (max-width: 767px) {
  body { padding-bottom: calc(98px + env(safe-area-inset-bottom)); }
  .mobile-contact-bar {
    position: fixed;
    z-index: 2147482990;
    right: auto;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 50%;
    display: grid;
    width: min(calc(100% - 20px), 410px);
    height: 70px;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 2px;
    padding: 5px;
    transform: translateX(-50%);
    border: 1px solid rgb(130 177 208 / .24);
    border-radius: 24px;
    background: rgb(3 14 25 / .92);
    box-shadow: 0 14px 38px rgb(0 0 0 / .5), inset 0 1px rgb(255 255 255 / .08);
    backdrop-filter: blur(16px);
  }
  .mobile-contact-track {
    display: flex;
    min-width: 0;
    height: 60px;
    gap: 4px;
    overflow-x: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-contact-track::-webkit-scrollbar { display: none; }
  .mobile-contact-item {
    display: grid;
    min-width: 0;
    height: 58px;
    flex: 1 1 0;
    grid-template-rows: 38px auto;
    place-items: center;
    padding: 3px 4px 4px;
    border-radius: 16px;
    color: #dcecf7;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    scroll-snap-align: start;
    touch-action: manipulation;
    transition: color .2s ease, transform .2s ease;
  }
  .mobile-contact-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 12px;
    background: transparent;
    color: #dcecf7;
  }
  .mobile-contact-icon svg { width: 26px; height: 26px; fill: currentColor; }
  .mobile-contact-icon img { display: block; width: 27px; height: 27px; object-fit: contain; }
  .mobile-contact-item--home .mobile-contact-icon { color: #2bd7e7; }
  .mobile-contact-item--facebook .mobile-contact-icon { color: #1877f2; }
  .mobile-contact-item--phone .mobile-contact-icon { color: #34d058; }
  .mobile-contact-arrow {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgb(150 188 214 / .2);
    border-radius: 50%;
    background: rgb(11 31 48 / .94);
    color: #e7f5ff;
    cursor: pointer;
    touch-action: manipulation;
  }
  .mobile-contact-arrow svg { width: 18px; height: 18px; }
  .mobile-contact-arrow:disabled { cursor: default; opacity: .28; }
  .mobile-contact-item:focus-visible,
  .mobile-contact-arrow:focus-visible { outline: 2px solid #fff; outline-offset: -2px; }
}

@media (max-width: 767px) {
  .mobile-contact-bar.is-scrollable { grid-template-columns: 44px minmax(0, 1fr) 44px; }
  .mobile-contact-bar.is-scrollable .mobile-contact-track { overflow-x: auto; }
  .mobile-contact-bar.is-scrollable .mobile-contact-item { min-width: 82px; flex: 0 0 82px; }
  .mobile-contact-bar.is-scrollable .mobile-contact-arrow { display: grid; }
}

@media (max-width: 767px) and (hover: hover) and (pointer: fine) {
  .mobile-contact-item:hover { color: #fff; transform: translateY(-2px); }
  .mobile-contact-arrow:not(:disabled):hover { background: #173d5b; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-contact-track { scroll-behavior: auto; }
}

/* Brand banner supplied for bacsipubgshop. */
.shop-hero {
  display: block;
  min-height: 0;
  margin: 18px 0 14px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}
.hero-banner-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1983 / 793;
  overflow: hidden;
}
.hero-banner-artboard {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-banner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .shop-hero { margin: 11px 0 10px; border: 0; border-radius: 12px; background: #020d19; }
  .shop-nav { display: none; }
  .hero-banner-frame { aspect-ratio: 1983 / 793; }
  .hero-banner-image { display: block; object-fit: contain; }
}

/* Keep every catalog tile the same size when a label wraps differently. */
.account-card-info { min-height: 158px; }
@media (min-width: 768px) and (max-width: 1023px) {
  .account-card { height: 376px; }
}
@media (max-width: 767px) {
  .account-card { height: 368px; }
  .account-card-info { height: 158px; min-height: 158px; }
}

@media (max-width: 767px) {
  .catalog-heading .catalog-kicker { margin-bottom: 8px; }
}

.zalo-inline-icon {
  display: inline-block !important;
  width: 1em !important;
  height: 1em !important;
  margin: 0 .18em;
  color: #25c7df;
  vertical-align: -.15em;
}
.zalo-brand-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}
.hero-contact .zalo-brand-icon { width: 23px; height: 23px; }

/* Header alignment matches the approved single-row desktop reference. */
@media (min-width: 1024px) {
  .shop-header {
    display: grid;
    min-height: 72px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 52px);
    padding-inline: 0;
  }
  .shop-nav {
    min-width: 0;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.5vw, 42px);
    overflow: visible;
  }
  .shop-nav a { min-height: 72px; font-size: 13px; }
  .shop-header-actions {
    grid-column: 3;
    grid-row: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
  .shop-hotline, .shop-zalo-button { min-height: 42px; }
  .shop-hotline { padding-inline: 15px; }
  .shop-zalo-button { padding-inline: 16px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .shop-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding-block: 6px;
  }
  .shop-nav {
    order: initial;
    grid-column: auto;
    min-height: 44px;
    overflow-x: auto;
    justify-content: center;
  }
  .shop-nav a { min-height: 44px; padding-inline: 6px; font-size: 10px; }
  .shop-header-actions { grid-column: 3; grid-row: 1; }
}

/* Catalog controls mirror the compact two-row reference layout. */
.catalog-filter-bar {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 166px 166px 142px 178px;
  gap: 10px;
  align-items: center;
  min-height: 66px;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid rgb(66 132 155 / .32);
  border-radius: 11px;
  background: rgb(5 21 35 / .86);
}
.catalog-search-field {
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgb(66 132 155 / .28);
  border-radius: 9px;
  background: rgb(3 17 30 / .62);
}
.catalog-search-field > svg { width: 18px; height: 18px; flex: 0 0 auto; color: #7fa6b7; }
.catalog-search-field input[type='search'] { width: 100%; min-height: 40px; padding: 0; border: 0; outline: 0; background: transparent; color: #eaf7fb; font-size: 12px; }
.catalog-search-field input::placeholder { color: #7892a4; opacity: 1; }
.catalog-inline-dropdown, .catalog-sort-dropdown { position: relative; min-width: 0; }
.catalog-inline-dropdown > summary, .catalog-sort-dropdown > summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgb(80 155 178 / .3);
  border-radius: 9px;
  background: rgb(6 28 45 / .86);
  color: #c8dce4;
  font-size: 11px;
  cursor: pointer;
  list-style: none;
}
.catalog-inline-dropdown > summary::-webkit-details-marker, .catalog-sort-dropdown > summary::-webkit-details-marker { display: none; }
.catalog-inline-dropdown > summary svg, .catalog-sort-dropdown > summary svg { width: 15px; height: 15px; flex: 0 0 auto; color: #8eacba; transition: transform .2s ease; }
.catalog-inline-dropdown[open] > summary svg, .catalog-sort-dropdown[open] > summary svg { transform: rotate(180deg); }
.catalog-inline-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  display: grid;
  gap: 5px;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgb(80 165 191 / .5);
  border-radius: 11px;
  background: linear-gradient(180deg, #0b293a, #051823);
  box-shadow: 0 18px 38px rgb(0 0 0 / .35);
}
.catalog-inline-menu a { display: flex; min-height: 34px; align-items: center; padding: 0 10px; border-radius: 7px; color: #d6e7ed; font-size: 10px; }
.catalog-inline-menu a:hover, .catalog-inline-menu a[aria-current='page'] { background: linear-gradient(180deg, #2acde4, #159fbd); color: #03141f; }
.catalog-search-submit {
  position: static;
  display: inline-flex;
  width: 100%;
  height: auto;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 18px;
  border: 1px solid #54d9e8;
  border-radius: 9px;
  background: linear-gradient(180deg, #29cce3, #129fbd);
  color: #03131d;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 1px rgb(255 255 255 / .3);
}
.catalog-filter-bar > button.catalog-search-submit { position: static; top: auto; right: auto; display: inline-flex; width: 100%; height: 42px; min-height: 42px; max-height: 42px; align-self: center; font-size: 11px; }
.catalog-search-submit svg { width: 15px; height: 15px; }
.catalog-filter--inline { min-width: 0; grid-area: auto; justify-self: stretch; }
.catalog-filter--inline .catalog-filter-trigger { width: 100%; min-height: 42px; justify-content: center; padding: 0 12px; border-color: #ffe08c; border-radius: 999px; background: linear-gradient(180deg, #ffd76d, #ffba26); color: #171000; font-size: 11px; box-shadow: inset 0 1px rgb(255 255 255 / .4), 0 8px 18px rgb(255 184 30 / .14); }
.catalog-filter--inline .catalog-filter-menu { top: calc(100% + 7px); }
.catalog-price-menu {
  width: min(580px, calc(100vw - 24px));
  zoom: .9;
  padding: 12px;
  border-color: rgb(31 201 230 / .42);
  border-radius: 18px;
  background: linear-gradient(145deg, #081d31 0%, #041321 62%, #061a2b 100%);
  box-shadow: 0 24px 70px rgb(0 0 0 / .48), inset 0 1px rgb(129 222 244 / .1);
}
.catalog-price-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.catalog-price-heading { display: flex; min-width: 0; align-items: center; gap: 10px; }
.catalog-price-heading-icon { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border: 1px solid rgb(255 193 45 / .48); border-radius: 11px; background: linear-gradient(145deg, rgb(31 201 230 / .2), rgb(255 193 45 / .16)); color: var(--catalog-cyan); box-shadow: inset 0 1px rgb(255 255 255 / .08), 0 12px 24px rgb(0 0 0 / .18); }
.catalog-price-heading-icon svg { width: 22px; height: 22px; }
.catalog-price-heading h2 { margin: 0; color: #f2f7fb; font-size: clamp(15px, 1.55vw, 19px); font-weight: 900; letter-spacing: .02em; }
.catalog-price-heading p { margin: 3px 0 0; color: #9bb6c8; font-size: 10px; line-height: 1.4; }
.catalog-price-close { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border: 1px solid rgb(31 201 230 / .3); border-radius: 9px; background: rgb(4 19 33 / .8); color: #b9d7e2; cursor: pointer; transition: border-color .2s ease, color .2s ease, transform .2s ease, background .2s ease; }
.catalog-filter-bar .catalog-price-close { position: static; inset: auto; width: 34px; height: 34px; }
.catalog-price-close svg { width: 16px; height: 16px; }
.catalog-price-close:hover { transform: translateY(-1px); border-color: var(--catalog-cyan); background: rgb(31 201 230 / .12); color: #fff; }
.catalog-price-panel { padding: 10px; border: 1px solid rgb(56 134 166 / .26); border-radius: 11px; background: linear-gradient(145deg, rgb(9 31 50 / .82), rgb(5 21 36 / .76)); box-shadow: inset 0 1px rgb(255 255 255 / .03); }
.catalog-price-panel + .catalog-price-panel { margin-top: 8px; }
.catalog-price-panel h3 { display: flex; align-items: center; gap: 7px; margin: 0 0 8px; color: #eaf6fa; font-size: 12px; font-weight: 900; letter-spacing: .03em; }
.catalog-price-panel h3 > svg { width: 17px; height: 17px; color: var(--catalog-cyan); }
.catalog-price-fields { display: grid; grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr); gap: 10px; align-items: end; }
.catalog-price-field { display: grid; gap: 5px; min-width: 0; color: #f1f7fa; font-size: 11px; font-weight: 900; }
.catalog-price-label { padding-inline: 2px; }
.catalog-price-field--min .catalog-price-label { color: var(--catalog-cyan); }
.catalog-price-field--max .catalog-price-label { color: var(--catalog-gold); }
.catalog-price-input { display: flex; min-height: 44px; align-items: center; gap: 6px; padding: 0 7px; border: 1px solid rgb(31 201 230 / .8); border-radius: 10px; background: rgb(2 12 24 / .72); color: #8fbdcc; box-shadow: inset 0 1px rgb(255 255 255 / .04); transition: border-color .2s ease, box-shadow .2s ease; }
.catalog-price-field--max .catalog-price-input { border-color: rgb(255 193 45 / .82); }
.catalog-price-input:focus-within { border-color: var(--catalog-cyan); box-shadow: 0 0 0 3px rgb(31 201 230 / .14), inset 0 1px rgb(255 255 255 / .04); }
.catalog-price-field--max .catalog-price-input:focus-within { border-color: var(--catalog-gold); box-shadow: 0 0 0 3px rgb(255 193 45 / .13), inset 0 1px rgb(255 255 255 / .04); }
.catalog-price-input input { width: 100%; min-width: 0; min-height: 36px; padding: 0; border: 0; outline: 0; background: transparent; color: #f4fbff; font-size: 16px; font-weight: 900; text-align: center; font-variant-numeric: tabular-nums; }
.catalog-price-input input::placeholder { color: #607e8e; opacity: 1; }
.catalog-price-step { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border: 1px solid rgb(31 201 230 / .13); border-radius: 8px; background: rgb(31 201 230 / .1); color: var(--catalog-cyan); cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.catalog-filter-bar .catalog-price-step { position: static; inset: auto; display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; padding: 0; line-height: 0; }
.catalog-price-field--max .catalog-price-step { border-color: rgb(255 193 45 / .14); background: rgb(255 193 45 / .1); color: var(--catalog-gold); }
.catalog-price-step svg { display: block; width: 17px; height: 17px; flex: 0 0 auto; fill: currentColor; }
.catalog-price-step:hover { transform: translateY(-1px); background: rgb(31 201 230 / .22); color: #fff; }
.catalog-price-field--max .catalog-price-step:hover { background: rgb(255 193 45 / .22); color: #fff7cf; }
.catalog-price-field small { color: #8ba8b8; font-size: 10px; font-weight: 700; text-align: center; }
.catalog-price-arrow { display: grid; width: 36px; height: 36px; align-self: center; place-items: center; border: 1px solid rgb(31 201 230 / .45); border-radius: 50%; background: rgb(31 201 230 / .08); color: var(--catalog-cyan); }
.catalog-price-arrow svg { width: 19px; height: 19px; fill: currentColor; }
.catalog-price-spark { color: var(--catalog-gold); font-size: 21px; line-height: 1; }
.catalog-price-presets { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; }
.catalog-price-presets a { position: relative; display: flex; min-height: 46px; align-items: center; justify-content: center; padding: 7px 16px 7px 7px; border: 1px solid rgb(56 134 166 / .3); border-radius: 9px; background: rgb(4 20 34 / .68); color: #d7e9ef; font-size: 10px; font-weight: 800; text-align: center; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease; }
.catalog-price-presets a:hover { transform: translateY(-2px); border-color: var(--catalog-cyan); background: rgb(31 201 230 / .11); color: #fff; }
.catalog-price-presets a[aria-current='page'] { border-color: var(--catalog-cyan); background: linear-gradient(145deg, #18bad8, #1575c9 68%, #0e4b96); color: #f7feff; box-shadow: 0 10px 22px rgb(31 201 230 / .18), inset 0 1px rgb(255 255 255 / .25); }
.catalog-price-presets a svg { position: absolute; right: 8px; bottom: 8px; width: 16px; height: 16px; opacity: 0; }
.catalog-price-presets a[aria-current='page'] svg { opacity: 1; }
.catalog-price-summary { display: flex; min-height: 42px; align-items: center; gap: 8px; margin: 7px 0 0; padding: 0 10px; border: 1px solid rgb(56 134 166 / .24); border-radius: 9px; background: rgb(5 22 37 / .7); color: #a9c1cd; font-size: 10px; line-height: 1.45; }
.catalog-price-summary > svg { width: 18px; height: 18px; flex: 0 0 auto; fill: var(--catalog-cyan); }
.catalog-price-summary strong { color: #eaf8fb; font-weight: 900; }
.catalog-price-summary strong:last-child { color: var(--catalog-gold); }
.catalog-price-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin-top: 7px; }
.catalog-price-actions button, .catalog-price-actions a { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; gap: 7px; border-radius: 9px; font-size: 10px; font-weight: 900; letter-spacing: .02em; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease; }
.catalog-price-actions button svg, .catalog-price-actions a svg { width: 16px; height: 16px; }
.catalog-price-actions button { position: static; width: 100%; height: auto; border: 1px solid #53dff0; background: linear-gradient(145deg, #27cee5, #138fb9); color: #02151f; cursor: pointer; box-shadow: inset 0 1px rgb(255 255 255 / .35), 0 10px 22px rgb(31 201 230 / .15); }
.catalog-price-actions a { border: 1px solid rgb(88 125 144 / .45); background: rgb(3 16 29 / .52); color: #d8e7ed; }
.catalog-price-actions button:hover, .catalog-price-actions a:hover { transform: translateY(-2px); }
.catalog-price-actions a:hover { border-color: var(--catalog-gold); color: var(--catalog-gold); background: rgb(255 193 45 / .08); }
.catalog-filter-bar .live-search-status { right: 12px; bottom: -18px; }
.catalog-bands-row { position: relative; z-index: 40; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.catalog-bands-row .catalog-bands {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
}
.catalog-sort-dropdown { flex: 0 0 190px; }
.catalog-sort-dropdown > summary { min-height: 38px; background: rgb(7 28 45 / .84); font-size: 10px; }
.catalog-sort-dropdown > summary b { color: #e6f3f7; }
.catalog-sort-dropdown .catalog-inline-menu { left: auto; width: 190px; }
.catalog-toolbar { margin-top: 4px; }
.trust-strip > div > svg { fill: none; stroke: currentColor; stroke-width: 1.8; }

@media (max-width: 1100px) {
  .catalog-filter-bar { grid-template-columns: minmax(220px, 1fr) repeat(2, 145px); gap: 7px; }
  .catalog-filter-bar > .catalog-inline-dropdown:nth-of-type(2) .catalog-inline-menu { right: 0; left: auto; }
  .catalog-sort-dropdown { flex-basis: 165px; }
}
@media (max-width: 767px) {
  .catalog-filter-bar { grid-template-columns: 1fr 1fr; gap: 7px; min-height: 0; padding: 8px; }
  .catalog-search-field { grid-column: 1 / -1; }
  .catalog-search-submit { min-height: 40px; }
  .catalog-filter--inline .catalog-filter-trigger { min-height: 40px; }
  .catalog-filter--inline .catalog-filter-trigger span { display: inline; }
  .catalog-price-menu { width: min(420px, calc(100vw - 32px)); zoom: 1; padding: 14px; border-radius: 15px; }
  .catalog-price-header { gap: 10px; margin-bottom: 13px; }
  .catalog-price-heading { gap: 10px; align-items: flex-start; }
  .catalog-price-heading-icon { width: 46px; height: 46px; border-radius: 12px; }
  .catalog-price-heading-icon svg { width: 24px; height: 24px; }
  .catalog-price-heading h2 { max-width: 205px; font-size: 16px; line-height: 1.2; }
  .catalog-price-heading p { max-width: 220px; margin-top: 4px; font-size: 10px; }
  .catalog-price-close { width: 38px; height: 38px; border-radius: 10px; }
  .catalog-filter-bar .catalog-price-close { width: 38px; height: 38px; }
  .catalog-price-close svg { width: 19px; height: 19px; }
  .catalog-price-panel { padding: 13px; border-radius: 13px; }
  .catalog-price-panel h3 { margin-bottom: 12px; font-size: 11px; }
  .catalog-price-panel h3 > svg { width: 18px; height: 18px; }
  .catalog-price-fields { grid-template-columns: 1fr; gap: 8px; }
  .catalog-price-field { gap: 5px; font-size: 10px; }
  .catalog-price-input { min-height: 48px; padding-inline: 8px; border-radius: 11px; }
  .catalog-price-input input { min-height: 40px; font-size: 17px; }
  .catalog-price-step { width: 30px; height: 30px; border-radius: 8px; }
  .catalog-filter-bar .catalog-price-step { width: 30px; height: 30px; }
  .catalog-price-step svg { width: 16px; height: 16px; }
  .catalog-price-field small { font-size: 9px; }
  .catalog-price-arrow { width: 34px; height: 34px; margin: 0 auto; transform: rotate(90deg); }
  .catalog-price-arrow svg { width: 18px; height: 18px; }
  .catalog-price-presets { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
  .catalog-price-presets a { min-height: 49px; padding: 8px 15px 8px 8px; border-radius: 9px; font-size: 9px; }
  .catalog-price-presets a svg { right: 5px; bottom: 5px; width: 13px; height: 13px; }
  .catalog-price-summary { min-height: 50px; gap: 8px; margin-top: 9px; padding: 0 11px; font-size: 10px; }
  .catalog-price-summary > svg { width: 18px; height: 18px; }
  .catalog-price-actions { grid-template-columns: 1fr; gap: 8px; margin-top: 9px; }
  .catalog-price-actions button, .catalog-price-actions a { min-height: 45px; border-radius: 10px; font-size: 11px; }
  .catalog-price-actions button svg, .catalog-price-actions a svg { width: 16px; height: 16px; }
  .catalog-bands-row { display: block; }
  .catalog-sort-dropdown { width: 100%; margin-top: 8px; }
  .catalog-sort-dropdown .catalog-inline-menu { width: 100%; }
  .catalog-bands-row .catalog-bands {
    overflow-x: auto;
    padding-block: 6px 8px;
    margin-block: -6px -8px;
  }
}

/* Compact catalog cards match the approved product reference. */
.account-card {
  height: auto;
  min-height: 0;
  grid-template-rows: auto 1fr;
}
.account-cover-link {
  height: clamp(230px, 16vw, 280px);
  aspect-ratio: auto;
}
.account-image-hint { display: none !important; }
.account-cover-link > .account-badge {
  right: auto;
  bottom: auto;
  height: auto;
  padding: 0 10px;
  text-transform: uppercase;
}
.account-cover-link > .account-badge--hot { background: linear-gradient(180deg, #ff8632, #e34e1c); }
.account-cover-link > .account-badge--new { background: linear-gradient(180deg, #2d9af2, #2370d7); }
.account-cover-link > .account-status-badge {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border: 1px solid rgb(37 210 126 / .5);
  border-radius: 8px;
  background: rgb(3 35 31 / .88);
  color: #71efaa;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}
.account-cover-link > .account-status-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d27e;
  box-shadow: 0 0 7px #25d27e;
}
.account-cover-link > .account-status-badge.is-rented {
  border-color: rgb(255 181 48 / .52);
  background: rgb(54 34 3 / .88);
  color: #ffc451;
}
.account-cover-link > .account-status-badge.is-rented i {
  background: #ffc451;
  box-shadow: 0 0 7px #ffc451;
}
.account-cover-link > .account-badge--rented {
  border: 1px solid rgb(255 213 96 / .62);
  background: linear-gradient(180deg, #ffc944, #df9713);
  color: #231900;
}
.account-card-info {
  min-height: 0;
  height: auto;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  padding: 12px 15px 14px;
}
.account-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.account-card-title h2 {
  min-width: 0;
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.account-card-title h2 a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.account-favorite {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #a7c0cc;
}
.account-favorite svg { width: 22px; height: 22px; }
.account-date {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px !important;
  color: #93afbd !important;
  font-size: 10px !important;
}
.account-date svg { width: 13px; height: 13px; color: #6d97aa; }
.account-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgb(105 150 166 / .2);
}
.account-prices p {
  margin: 0;
  color: #92a9b7;
  font-size: 10px !important;
}
.account-prices p:last-child { text-align: right; }
.account-prices strong {
  display: block;
  margin-top: 4px;
  color: #ff5d4f !important;
  font-size: 20px;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.account-prices p:last-child strong { color: var(--catalog-gold) !important; font-size: 16px; }
.account-detail-link {
  grid-column: auto;
  grid-row: auto;
  justify-self: end;
  min-width: 112px;
  min-height: 38px;
  margin-top: 12px;
  padding: 0 13px;
  border-radius: 10px;
  font-size: 10px;
}

@media (max-width: 767px) {
  .account-cover-link { height: clamp(200px, 56vw, 240px); }
  .account-card-info { padding: 11px 12px 13px; }
  .account-card-title h2 { font-size: 15px; }
  .account-cover-link > .account-status-badge, .account-badge { top: 8px; min-height: 24px; padding-inline: 8px; font-size: 9px; }
  .account-cover-link > .account-status-badge { right: 8px; }
  .account-prices strong { font-size: 18px; }
  .account-prices p:last-child strong { font-size: 14px; }
  .account-detail-link { min-width: 104px; min-height: 36px; margin-top: 10px; font-size: 9px; }
}

.catalog-pagination { align-items: center; flex-wrap: wrap; }
.catalog-pagination .catalog-pagination-page {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border-color: rgb(91 171 194 / .28);
  border-radius: 10px;
  background: rgb(5 25 39 / .78);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 1px rgb(255 255 255 / .04);
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}
.catalog-pagination .catalog-pagination-page:hover { border-color: rgb(40 211 230 / .7); color: #fff; transform: translateY(-1px); }
.catalog-pagination .catalog-pagination-page[aria-current='page'] {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #00131d;
  box-shadow: 0 7px 18px rgb(40 211 230 / .2);
}
.catalog-pagination-ellipsis {
  width: 18px;
  color: #6f9cac;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  user-select: none;
}
.catalog-pagination .catalog-pagination-control {
  display: inline-flex;
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-color: rgb(91 171 194 / .36);
  border-radius: 11px;
  background: linear-gradient(180deg, rgb(13 42 59 / .9), rgb(4 21 34 / .98));
  color: #bce8ef;
  box-shadow: inset 0 1px rgb(255 255 255 / .06);
}
.catalog-pagination .catalog-pagination-control svg { width: 17px; height: 17px; transition: transform .2s ease; }
.catalog-pagination .catalog-pagination-control--previous:hover svg { transform: translateX(-2px); }
.catalog-pagination .catalog-pagination-control--next:hover svg { transform: translateX(2px); }
.catalog-pagination .catalog-pagination-control.is-disabled { opacity: .34; cursor: not-allowed; }
.catalog-pagination .catalog-pagination-control:focus-visible { outline: 3px solid rgb(40 211 230 / .55); outline-offset: 3px; }
@media (max-width: 767px) {
  .catalog-pagination { gap: 5px; margin: 22px 0; }
  .catalog-pagination .catalog-pagination-page.is-mobile-extra { display: none; }
  .catalog-pagination .catalog-pagination-page { width: 44px; min-width: 44px; min-height: 44px; }
  .catalog-pagination-ellipsis { width: 14px; }
  .catalog-pagination .catalog-pagination-control { width: 44px; min-width: 44px; min-height: 44px; }
  .catalog-pagination .catalog-pagination-control svg { width: 16px; height: 16px; }
}

/* bacsipubgshop light public theme */
:root {
  color-scheme: light;
  --text: #102430;
  --muted: #617785;
  --border: #c9dce3;
  --border-warm: #e3c56c;
  --focus: #087f9a;
}

html { background: #f5f7f8; }
body {
  background:
    radial-gradient(circle at 50% -6rem, rgb(31 201 230 / .1), transparent 30rem),
    linear-gradient(180deg, #fbfcfc 0, #f4f7f8 42rem, #eef3f5 100%);
  color: var(--text);
}
* { scrollbar-color: #25b9d1 #e4ecef; }
*::-webkit-scrollbar-track { background: #e4ecef; }
*::-webkit-scrollbar-thumb { border-color: #e4ecef; background: #25b9d1; }
*::-webkit-scrollbar-thumb:hover { background: #d5a624; }

.shop-header { border-bottom-color: #dbe5e8; }
.shop-logo em { color: #102430; }
.shop-nav a { color: #45606e; }
.shop-nav a:hover,
.shop-nav a[aria-current='page'] { color: #078ba7; }
.shop-hotline {
  border-color: #cbdde3;
  background: #fff;
  color: #203c4a;
  box-shadow: 0 6px 18px rgb(32 63 78 / .08);
}
.shop-zalo-button { box-shadow: 0 7px 18px rgb(21 159 196 / .18); }

.trust-strip,
.benefit-strip {
  border-color: #d6e3e7;
  background: #fff;
  box-shadow: 0 12px 30px rgb(43 77 91 / .07);
}
.trust-strip > div,
.benefit-strip > div { border-right-color: #e2eaed; }
.trust-strip b,
.benefit-strip b { color: #193441; }
.trust-strip small,
.benefit-strip small { color: #687e89; }

.catalog-filter-bar {
  z-index: 1200;
  border-color: #d6e3e7;
  background: rgb(255 255 255 / .96);
  box-shadow: 0 12px 30px rgb(43 77 91 / .07);
}
.catalog-search-field {
  border-color: #d7e3e7;
  background: #f3f7f8;
}
.catalog-search-field > svg { color: #78909c; }
.catalog-search-field input[type='search'] { color: #102430; }
.catalog-search-field input::placeholder { color: #8296a0; }
.catalog-inline-dropdown > summary,
.catalog-sort-dropdown > summary {
  border-color: #d4e1e5;
  background: #f7f9fa;
  color: #314d5a;
}
.catalog-inline-dropdown > summary:hover,
.catalog-sort-dropdown > summary:hover { border-color: #77cddd; }
.catalog-inline-dropdown > summary svg,
.catalog-sort-dropdown > summary svg { color: #6d8793; }
.catalog-inline-menu {
  border-color: #bcd7df;
  background: #fff;
  box-shadow: 0 18px 38px rgb(39 75 90 / .16);
}
.catalog-inline-menu a { color: #294653; }
.catalog-inline-menu a:hover,
.catalog-inline-menu a[aria-current='page'] {
  background: #dff6fa;
  color: #076d82;
}
.catalog-sort-dropdown > summary b { color: #102f3d; }

.catalog-price-menu {
  border-color: #9fd9e4;
  background: #fff;
  box-shadow: 0 24px 64px rgb(30 67 82 / .2), inset 0 1px #fff;
}
.catalog-price-heading-icon {
  border-color: #b9dce3;
  background: linear-gradient(145deg, #e0f8fb, #fff4cf);
  box-shadow: 0 10px 24px rgb(46 91 108 / .1);
}
.catalog-price-heading h2 { color: #15313e; }
.catalog-price-heading p { color: #6d8490; }
.catalog-price-close {
  border-color: #cbdde3;
  background: #f2f7f8;
  color: #55717e;
}
.catalog-price-close:hover {
  background: #e0f7fa;
  color: #087e97;
}
.catalog-price-panel {
  border-color: #d9e6e9;
  background: #f8fafb;
  box-shadow: inset 0 1px #fff;
}
.catalog-price-panel h3 { color: #23404d; }
.catalog-price-field { color: #294653; }
.catalog-price-input {
  border-color: #4fc4d8;
  background: #fff;
  color: #718b96;
  box-shadow: inset 0 1px 2px rgb(25 60 75 / .05);
}
.catalog-price-field--max .catalog-price-input { border-color: #e6b83e; }
.catalog-price-input input { color: #102f3d; }
.catalog-price-input input::placeholder { color: #9aabb3; }
.catalog-price-step { border-color: #bfe6ed; background: #e9f9fb; }
.catalog-price-field--max .catalog-price-step { border-color: #f0dfac; background: #fff7df; }
.catalog-price-step:hover { color: #087e97; }
.catalog-price-field--max .catalog-price-step:hover { color: #9c7000; }
.catalog-price-field small { color: #758b96; }
.catalog-price-arrow { border-color: #a7dbe4; background: #e8f8fa; }
.catalog-price-presets a {
  border-color: #d4e2e6;
  background: #fff;
  color: #2c4855;
}
.catalog-price-presets a:hover {
  background: #e8f8fa;
  color: #087e97;
}
.catalog-price-presets a[aria-current='page'] {
  border-color: #159db8;
  background: linear-gradient(145deg, #22c3dd, #148da9);
  color: #fff;
}
.catalog-price-summary {
  border-color: #d7e5e8;
  background: #f1f7f8;
  color: #627b87;
}
.catalog-price-summary strong { color: #183845; }
.catalog-price-actions a {
  border-color: #d0dee3;
  background: #fff;
  color: #3c5966;
}

.catalog-kicker { color: #68818d; }
.catalog-heading h2 { color: #102430; }
.catalog-bands a,
.catalog-pagination a {
  border-color: #d0dfe4;
  background: #fff;
  color: #385460;
  box-shadow: 0 5px 14px rgb(42 77 91 / .05);
}
.catalog-bands a:hover { border-color: #65c7da; color: #087e97; }
.catalog-bands a[aria-current='page'] { color: #02151f; }
.catalog-hot-band { color: #b47b00 !important; }

.account-card {
  border-color: #c7dce2;
  background: #fff;
  box-shadow: 0 12px 28px rgb(38 74 88 / .09);
}
.account-card.is-hot { border-color: #f0a548; }
.account-card-title h2 { color: #142f3c; }
.account-card-title h2 a:hover { color: #078ba7; }
.account-favorite { color: #91a7b1; }
.account-date { color: #6f8792 !important; }
.account-date svg { color: #7c96a1; }
.account-prices { border-top-color: #e2eaed; }
.account-prices p { color: #718792; }
.account-prices p:last-child strong { color: #b98408 !important; }
.account-detail-link {
  border-color: #e6c15c;
  background: #fff8e3;
  color: #987000;
}
.account-detail-link:hover { border-color: #d4a51d; background: #fff3c7; color: #805d00; }
.catalog-empty {
  border-color: #d4e2e6;
  background: #fff;
  color: #284653;
}

.catalog-pagination .catalog-pagination-page,
.catalog-pagination .catalog-pagination-control {
  border-color: #ccdde2;
  background: #fff;
  color: #31515f;
  box-shadow: 0 5px 14px rgb(42 77 91 / .06);
}
.catalog-pagination .catalog-pagination-page:hover { color: #087e97; }
.catalog-pagination-ellipsis { color: #78929d; }

.detail-back a {
  border-color: #ccdfe5;
  background: #fff;
  color: #31515f;
  box-shadow: 0 6px 16px rgb(38 74 88 / .06);
}
.account-image-viewer-trigger { border-color: #8ecfdb; background: #e8eef0; }
.account-detail-panel {
  border-color: #cfdee3;
  background: #fff;
  box-shadow: 0 14px 34px rgb(38 74 88 / .09);
}
.account-detail-panel h1 { color: #102430; }
.detail-status { border-color: #7ac8ae; background: #ecfaf5; color: #147d5f; }
.detail-price { border-color: #ead38f; background: #fff9e8; }
.detail-price span,
.detail-price small,
.detail-facts dt { color: #6d838e; }
.detail-facts dd { color: #193642; }
.detail-facts div { border-bottom-color: #dfe8eb; }
.account-description { border-color: #cce5ea; background: #f1fafb; }
.account-description h2 { color: #087e97; }
.account-description p { color: #3f5a66; }
.detail-note { border-color: #d2e0e4; background: #f7f9fa; color: #617985; }

.shop-footer { border-top-color: #d7e3e7; color: #667d88; }
.shop-footer .shop-logo em { color: #102430; }

.shop-announcement {
  border-color: #addce5;
  color: #173441;
  box-shadow: 0 28px 80px rgb(30 62 75 / .3);
}
.shop-announcement-card {
  background:
    radial-gradient(circle at 15% 0%, rgb(37 199 223 / .14), transparent 45%),
    linear-gradient(155deg, #fff, #f1f7f8 72%);
}
.shop-announcement-close { border-color: #cbdde3; background: #fff; color: #55717e; }
.shop-announcement-close:hover { background: #e7f6f8; color: #087e97; }
.shop-announcement-kicker { color: #078ba7; }
.shop-announcement-card h2 { color: #173441; }
.shop-announcement-callout { border-color: #e5c568; background: #fff5d6; color: #9a7000; }
.shop-announcement-description { color: #637b87; }
.shop-announcement-dismiss { border-color: #cad9de; background: #e7eef0; color: #34515e; }

.image-viewer-dialog { color: #f2f7fb; }
.image-viewer-dialog .image-viewer-close { color: #f2f7fb; }
.account-cover-link > span { color: #f2f7fb; }

@media (max-width: 1023px) {
  .benefit-strip > div:nth-child(-n + 2) { border-bottom-color: #e2eaed; }
}

@media (max-width: 767px) {
  .trust-strip > div:nth-child(-n + 2),
  .benefit-strip > div:nth-child(-n + 2) { border-bottom-color: #e2eaed; }
}

/* Installment calculator stays compact until the visitor opens it. */
.installment-calculator {
  margin: 0 0 20px;
  overflow: visible;
  border: 1px solid #c9e2e7;
  border-radius: 14px;
  background: #f7fbfc;
  box-shadow: 0 12px 26px rgb(35 83 98 / .08);
  scroll-margin-top: 18px;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.installment-calculator--wide { grid-column: 1 / -1; }
.installment-calculator.is-expanded { border-color: #8bcfdc; box-shadow: 0 18px 34px rgb(35 83 98 / .13); }
.installment-toggle {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 15px;
  border: 0;
  background: transparent;
  color: #123b4b;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  transition: background-color .22s ease, color .22s ease;
}
.installment-toggle:hover { background: linear-gradient(90deg, #edf8fa, #f7fbfc); color: #087e97; }
.installment-toggle:focus-visible,
.installment-calculate:focus-visible,
.installment-zalo:focus-visible,
.installment-message button:focus-visible { outline: 3px solid #f0b923; outline-offset: 2px; }
.installment-toggle-label { display: inline-flex; align-items: center; gap: 9px; }
.installment-toggle-label svg { width: 25px; height: 25px; color: #0a9db6; }
.installment-toggle-chevron { width: 19px; height: 19px; color: #557984; transition: transform .2s ease; }
.installment-panel { padding: 25px 24px 22px; }
.installment-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.installment-field { display: grid; align-content: start; gap: 6px; min-width: 0; color: #244653; font-size: 12px; font-weight: 800; }
.installment-field > span { display: flex; min-height: 17px; align-items: flex-start; line-height: 1.35; }
.installment-field input,
.installment-field select,
.installment-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #c8dfe5;
  border-radius: 10px;
  background: #fff;
  color: #163642;
  font: inherit;
  font-weight: 700;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.installment-field input,
.installment-field select { height: 44px; }
.installment-field select {
  appearance: none;
  padding-right: 36px;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #087e97 50%), linear-gradient(135deg, #087e97 50%, transparent 50%);
  background-position: calc(100% - 16px) 19px, calc(100% - 11px) 19px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  cursor: pointer;
}
.installment-select { position: relative; width: 100%; }
.installment-field:has(.installment-select.is-open) { position: relative; z-index: 70; }
.installment-select.is-open { z-index: 80; }
.installment-select-native { position: absolute; width: 1px !important; height: 1px !important; padding: 0 !important; border: 0 !important; opacity: 0; pointer-events: none; }
.installment-select-trigger {
  position: relative;
  display: flex;
  width: 100%;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 42px 10px 14px;
  border: 1px solid #b9dce4;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f4fbfc);
  color: #163642;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .95), 0 4px 12px rgb(33 79 94 / .06);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .2s ease;
}
.installment-select-trigger::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #087e97;
  border-bottom: 2px solid #087e97;
  content: '';
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s ease;
}
.installment-select.is-open .installment-select-trigger { border-color: #0aa3bb; background: #fff; box-shadow: 0 0 0 3px rgb(10 157 182 / .14), 0 8px 18px rgb(33 79 94 / .1); }
.installment-select.is-open .installment-select-trigger::after { transform: translateY(-30%) rotate(225deg); }
.installment-select-trigger:focus-visible { border-color: #0aa3bb; outline: 0; box-shadow: 0 0 0 3px rgb(10 157 182 / .18); }
.installment-select-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 5px;
  max-height: 240px;
  overflow: auto;
  padding: 7px;
  border: 1px solid #b9dce4;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 30px rgb(33 79 94 / .18), 0 2px 5px rgb(33 79 94 / .08);
  transform-origin: top center;
}
.installment-select-menu[hidden] { display: none; }
.installment-select-option {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #31515f;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, transform .16s ease;
}
.installment-select-option:hover,
.installment-select-option:focus-visible,
.installment-select-option.is-selected { background: #e8f8fa; color: #087e97; outline: 0; }
.installment-select-option.is-selected { font-weight: 900; }
.installment-field textarea { min-height: 84px; resize: vertical; line-height: 1.45; }
.installment-field input:focus-visible,
.installment-field select:focus-visible,
.installment-field textarea:focus-visible { border-color: #0a9db6; outline: 0; box-shadow: 0 0 0 3px rgb(10 157 182 / .18); }
.installment-field input[readonly] { background: #edf5f7; color: #38616d; }
.installment-field small { min-height: 15px; color: #718993; font-size: 10px; font-weight: 600; line-height: 1.35; }
.installment-field--request { margin-top: 12px; }
.installment-calculate,
.installment-zalo,
.installment-message button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid #0aa3bb;
  border-radius: 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.installment-calculate { margin-top: 14px; background: #0aa3bb; color: #fff; }
.installment-calculate:hover { background: #078ba2; }
.installment-calculate svg { width: 17px; height: 17px; }
.installment-error { margin: 12px 0 0; padding: 10px 12px; border: 1px solid #efb4b4; border-radius: 9px; background: #fff1f1; color: #a32b2b; font-size: 11px; font-weight: 800; line-height: 1.4; }
.installment-result { margin-top: 16px; padding-top: 15px; border-top: 1px dashed #c5dce1; scroll-margin-top: 24px; }
.installment-result h2 { margin: 0 0 11px; color: #163b49; font-size: 14px; }
.installment-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0; }
.installment-summary div { display: flex; min-height: 52px; flex-direction: column; justify-content: center; gap: 3px; padding: 8px 10px; border: 1px solid #d5e6ea; border-radius: 9px; background: #fff; }
.installment-summary dt { color: #6b838d; font-size: 10px; font-weight: 700; }
.installment-summary dd { margin: 0; color: #097d93; font-size: 14px; font-weight: 900; }
.installment-schedule { display: grid; gap: 8px; margin-top: 15px; }
.installment-schedule h3 { margin: 0 0 2px; color: #244653; font-size: 12px; }
.installment-paid-message { margin: 0; padding: 10px 12px; border: 1px solid #b8dfd1; border-radius: 9px; background: #effaf6; color: #147d5f; font-size: 11px; font-weight: 800; }
.installment-schedule-row { display: grid; grid-template-columns: 1.05fr repeat(4, 1fr); align-items: center; gap: 8px; padding: 9px 10px; border: 1px solid #d6e6e9; border-radius: 9px; background: #fff; }
.installment-schedule-row h4 { margin: 0; color: #163b49; font-size: 11px; }
.installment-schedule-row div { display: grid; gap: 2px; }
.installment-schedule-row span { color: #718993; font-size: 9px; }
.installment-schedule-row strong { color: #244653; font-size: 11px; }
.installment-zalo { width: 100%; margin-top: 14px; background: #25c7df; color: #062631; }
.installment-zalo:hover { background: #16b1ca; }
.installment-zalo img { width: 20px; height: 20px; object-fit: contain; }
.installment-message { display: grid; gap: 7px; margin-top: 12px; padding: 11px; border: 1px solid #d5e6ea; border-radius: 10px; background: #f8fcfd; }
.installment-message label { color: #55717c; font-size: 10px; font-weight: 800; }
.installment-message textarea { width: 100%; min-height: 130px; padding: 9px; border: 1px solid #c8dfe5; border-radius: 8px; background: #fff; color: #244653; font: inherit; font-size: 11px; line-height: 1.45; resize: vertical; }
.installment-message button { justify-self: start; background: #fff; color: #087e97; }
.installment-message button:hover { background: #e9f8fa; }
.installment-message button svg { width: 16px; height: 16px; }
.installment-copy-status { min-height: 16px; margin: 0; color: #087e97; font-size: 10px; font-weight: 700; line-height: 1.4; }

/* The calculator trigger shares the contact-action grid with Zalo. */
.contact-actions.has-installment-action > a:first-child { grid-column: auto; }
.contact-actions.has-installment-action > .installment-contact-toggle {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #ead38f;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff2b9, #ffd76d);
  color: #805d00;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 1px rgb(255 255 255 / .45), 0 10px 22px rgb(158 112 0 / .13);
}
.contact-actions.has-installment-action > .installment-contact-toggle .installment-toggle-chevron { display: none; }
.contact-actions.has-installment-action > a:nth-child(3) { border-color: #5598f7; background: linear-gradient(180deg, #438cf5, #276bd9); }
.contact-actions.has-installment-action > .installment-contact-toggle[aria-expanded='true'] { border-color: #0aa3bb; background: linear-gradient(180deg, #43d8e8, #18bad3); color: #05313b; }

@media (hover: hover) and (pointer: fine) {
  .contact-actions.has-installment-action > .installment-contact-toggle:hover { border-color: #d4a51d; background: linear-gradient(180deg, #ffe99a, #ffc84a); transform: translateY(-2px); }
}

@media (min-width: 1024px) {
  .account-detail-grid { grid-template-columns: minmax(0, 1.55fr) minmax(400px, .95fr); }
  .installment-panel { padding: 28px 30px 26px; }
  .installment-fields { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
  .installment-fields > .installment-field > span { min-height: 30px; }
  .installment-field--request { margin-top: 16px; }
  .installment-summary { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
  .installment-summary div { min-height: 64px; padding: 10px 12px; }
  .installment-summary dd { font-size: 16px; }
  .installment-schedule { gap: 10px; }
  .installment-schedule-row { grid-template-columns: 76px repeat(4, minmax(0, 1fr)); gap: 10px; padding: 11px 12px; }
  .installment-schedule-row h4 { font-size: 12px; }
  .installment-schedule-row span { font-size: 10px; }
  .installment-schedule-row strong { font-size: 13px; }
  .installment-calculate { min-width: 170px; }
}

@media (max-width: 700px) {
  .installment-calculator--wide { grid-column: auto; }
  .contact-actions.has-installment-action > .installment-contact-toggle { min-height: 40px; padding: 6px; border-radius: 9px; font-size: 8px; }
  .installment-fields { grid-template-columns: 1fr; gap: 10px; }
  .installment-panel { padding: 21px 16px 20px; }
  .installment-field > span { min-height: 20px; }
  .installment-toggle { padding-inline: 12px; }
  .installment-calculator { scroll-margin-top: 12px; }
  .installment-result { scroll-margin-top: 14px; }
  .installment-schedule-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .installment-schedule-row h4 { grid-column: 1 / -1; padding-bottom: 3px; border-bottom: 1px dashed #d6e6e9; }
}

@media (prefers-reduced-motion: reduce) {
  .installment-toggle-chevron { transition: none; }
}
