: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; }
}
@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 TBPshopacc 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; }

/* Keep the Zalo promo visible without taking space from the catalog layout. */
.floating-zalo-banner {
  position: fixed;
  z-index: 1100;
  top: auto;
  right: 12px;
  bottom: 12px;
  display: block;
  width: 200px;
  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-zalo-banner img { display: block; width: 100%; height: auto; }
.floating-zalo-banner:focus-visible { outline: 3px solid var(--focus); outline-offset: 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-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-zalo-banner {
    top: auto;
    right: 6px;
    bottom: 64px;
    width: 120px;
    min-width: 0;
    transform: none;
  }
  .floating-zalo-banner:hover { transform: scale(1.03); }

  .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; }
}

/* Reference-aligned PUBG hero. */
.shop-hero {
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  min-height: 310px;
  gap: 0;
  padding: 28px 32px;
  overflow: hidden;
  background: #020d19;
  isolation: isolate;
}
.hero-copy { z-index: 3; max-width: 620px; padding-right: 22px; }
.shop-hero h1 { max-width: 520px; font-size: clamp(34px, 3vw, 47px); line-height: .98; letter-spacing: -.045em; text-shadow: 0 3px 20px rgb(0 0 0 / .45); }
.shop-hero h1 em { margin-top: 5px; color: #19c9e7; text-shadow: 0 0 22px rgb(25 201 231 / .18); }
.hero-cta-row { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.hero-cta-row a { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 6px; font-size: 12px; font-weight: 900; letter-spacing: .01em; transition: transform .2s ease, border-color .2s ease, filter .2s ease, background-color .2s ease; }
.hero-cta-row a:hover { filter: brightness(1.08); transform: translateY(-2px); }
.hero-cta-row a:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.hero-cta-row svg { width: 18px; height: 18px; }
.hero-cta-row .zalo-brand-icon { width: 22px; height: 22px; }
.hero-cta-primary { min-width: 220px; background: linear-gradient(180deg, #23d5ef, #0c9fc4); color: #03131d; box-shadow: inset 0 1px rgb(255 255 255 / .34), 0 9px 24px rgb(5 164 199 / .2); }
.hero-cta-row .hero-cta-zalo { min-width: 230px; border-color: rgb(45 196 222 / .5); background: rgb(3 19 32 / .72); color: #eefbff; box-shadow: inset 0 1px rgb(255 255 255 / .06); }
.hero-cta-row .hero-cta-zalo:hover { border-color: #38d5ed; background: rgb(7 38 56 / .9); }
.hero-visual { position: absolute; inset: 0 0 0 38%; z-index: 1; overflow: hidden; border-radius: 0; opacity: 1; }
.hero-scene { position: relative; width: 100%; height: 100%; min-height: 310px; overflow: hidden; border-radius: 0; background: transparent; isolation: isolate; }
.hero-visual .hero-banner-image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: 58% top; filter: saturate(1.06) contrast(1.05) brightness(.82); -webkit-mask-image: none; mask-image: none; }
.hero-banner-shade { position: absolute; inset: 0; z-index: 1; display: block; background: linear-gradient(90deg, #020d19 0%, rgb(2 13 25 / .98) 13%, rgb(2 13 25 / .78) 31%, rgb(2 13 25 / .16) 58%, transparent 76%), linear-gradient(180deg, rgb(2 9 18 / .12), transparent 55%, rgb(2 9 18 / .58)); pointer-events: none; }
.hero-visual::after, .hero-scene::before, .hero-scene::after, .hero-visual-glow { display: none; content: none; }

@media (max-width: 1023px) {
  .shop-hero { grid-template-columns: minmax(350px, .95fr) minmax(0, 1.05fr); min-height: 300px; padding: 26px 24px; }
  .shop-hero h1 { font-size: clamp(31px, 4vw, 42px); }
  .hero-copy { max-width: 570px; padding-right: 14px; }
  .hero-cta-row { gap: 10px; }
  .hero-cta-row a { min-width: 0; padding-inline: 16px; }
  .hero-visual { left: 34%; }
}

@media (max-width: 767px) {
  .shop-hero { display: block; min-height: 370px; margin: 11px 0 10px; padding: 23px 18px 18px; border-radius: 12px; }
  .shop-nav { display: none; }
  .hero-copy { max-width: none; padding-right: 0; }
  .shop-hero h1 { max-width: 340px; font-size: clamp(29px, 9vw, 38px); line-height: .98; }
  .hero-cta-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 17px; }
  .hero-cta-row a { min-width: 0; min-height: 46px; padding: 0 10px; font-size: 10px; }
  .hero-cta-row .hero-cta-zalo { min-width: 0; }
  .hero-cta-row .zalo-brand-icon { width: 20px; height: 20px; }
  .hero-visual { inset: 0; width: auto; height: auto; opacity: .82; }
  .hero-scene { min-height: 100%; }
  .hero-visual .hero-banner-image { object-position: 59% center; filter: saturate(1) contrast(1.04) brightness(.76); }
  .hero-banner-shade { background: linear-gradient(180deg, rgb(2 13 25 / .72) 0%, rgb(2 13 25 / .82) 54%, rgb(2 13 25 / .35) 100%), linear-gradient(90deg, rgb(2 13 25 / .68) 0%, rgb(2 13 25 / .42) 60%, rgb(2 13 25 / .12) 100%); }
}

@media (max-width: 360px) {
  .shop-hero { min-height: 420px; }
  .hero-cta-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta-row a { transition: none; }
  .hero-cta-row a:hover { transform: none; }
}

/* 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; }
}

.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(520px, calc(100vw - 24px)); padding: 12px; }
.catalog-price-title { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 0 0 13px; color: #ffd34e; font-size: 15px; font-weight: 900; }
.catalog-price-title span { font-size: 14px; }
.catalog-price-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.catalog-price-fields label { display: grid; gap: 6px; color: #f6d442; font-size: 12px; font-weight: 900; }
.catalog-price-input { display: flex; min-height: 40px; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid rgb(110 133 174 / .58); border-radius: 14px; background: #03091a; color: #8f9eb7; }
.catalog-price-input:focus-within { border-color: #2bd3e3; box-shadow: 0 0 0 3px rgb(43 211 227 / .12); }
.catalog-price-input input { width: 100%; min-width: 0; min-height: 38px; padding: 0; border: 0; outline: 0; background: transparent; color: #eaf2ff; font-size: 13px; font-weight: 800; }
.catalog-price-input input::placeholder { color: #71809a; opacity: 1; }
.catalog-price-help { margin: 10px 0 12px; color: #8a99af; font-size: 11px; font-weight: 800; text-align: center; }
.catalog-price-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.catalog-price-actions button, .catalog-price-actions a { display: inline-flex; min-height: 43px; align-items: center; justify-content: center; border-radius: 13px; font-size: 11px; font-weight: 900; }
.catalog-price-actions button { position: static; width: 100%; height: auto; border: 1px solid #24d46d; background: linear-gradient(180deg, #1dd96d, #09bd59); color: #eafff0; cursor: pointer; box-shadow: inset 0 1px rgb(255 255 255 / .22); }
.catalog-price-actions a { border: 1px solid rgb(77 93 124 / .45); background: #202a3e; color: #e1e8f6; }
.catalog-price-actions button:hover, .catalog-price-actions a:hover { transform: translateY(-1px); }
.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) 145px 145px 118px 158px; gap: 7px; }
  .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(350px, calc(100vw - 24px)); }
  .catalog-price-fields, .catalog-price-actions { gap: 8px; }
  .catalog-price-input { padding-inline: 9px; }
  .catalog-price-input input { font-size: 11px; }
  .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; }
}
