/*
 * Forest Frontier v0.10.0-rc52 — Shop screen contract.
 * Structural consolidation only. This late-loaded screen layer owns the
 * active Shop geometry, showcase, equipment catalogue, daily runes, refresh states and tutorial overlay.
 * Mechanics, economy, authority and public DOM contracts are unchanged.
 */

/* Source replay: css/main.css */

.shop-grid {
  display: grid;
  gap: 9px;
}

.shop-item {
  border: 1px solid #2b2e31;
  border-left-width: 3px;
  background: #151719;
  border-radius: 8px;
  padding: 12px;
}

.shop-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.shop-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-item.rare {
  border-color: #315f7d;
  border-left-color: #3f9fd8;
  background: linear-gradient(90deg,#17304466,#151719 34%);
}

.shop-item-clickable {
  cursor: pointer;
  transition: border-color .15s,background .15s,transform .05s;
}

.shop-item-clickable:hover {
  background: #1a1d20;
  border-color: #4a4f54;
}

.shop-item-clickable:active {
  transform: translateY(1px);
}

.shop-category {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.shop-category h3 {
  margin: 4px 0;
  color: #d7c28f;
  border-bottom: 1px solid #303438;
  padding-bottom: 7px;
}

.shop-item.equip-level-locked {
  border-color: #7f3737;
  background: linear-gradient(90deg, #2a1718, #151719);
}

.shop-item.equip-level-locked .item-name,
.shop-item.equip-level-locked .item-meta {
  color: #e27b75;
}

.shop-item.purchase-level-locked {
  opacity: .5;
}

.shop-level-warning {
  margin-top: 4px;
  color: #e27b75;
  font-size: 12px;
  font-weight: 800;
}

.shop-category {
  display: block;
  margin-bottom: 8px;
}

.shop-category-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #34383b;
  border-radius: 9px;
  background: #151719;
  color: #d7c28f;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.shop-category.open .shop-category-toggle {
  border-color: #8c744d;
  background: #282217;
}

.shop-category-body {
  display: grid;
  gap: 8px;
  padding: 8px 0 10px;
}

.shop-category-body[hidden] {
  display: none;
}

.shop-layout {
  display: grid;
  grid-template-columns: 170px minmax(0,1fr);
  gap: 14px;
  align-items: start;
}

.shop-type-menu {
  position: sticky;
  top: 74px;
  display: grid;
  gap: 7px;
}

.shop-type-button {
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  border: 1px solid #34383b;
  border-radius: 8px;
  background: #151719;
  color: #c8c8c8;
  font-weight: 800;
  cursor: pointer;
}

.shop-type-button.active {
  border-color: #8c744d;
  background: #282217;
  color: #e0c88f;
}

.shop-type-content h3 {
  margin: 0 0 10px;
  color: #d7c28f;
  border-bottom: 1px solid #303438;
  padding-bottom: 8px;
}

.shop-item-list {
  display: grid;
  gap: 8px;
}

@media (max-width:680px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width:680px) {
  .shop-type-menu {
    position: static;
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
  }
}

@media (max-width:680px) {
  .shop-type-button {
    min-width: max-content;
    text-align: center;
  }
}

.shop-recommended {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid #8c744d;
  border-radius: 11px;
  background: linear-gradient(135deg,#302817,#17191b);
  box-shadow: 0 10px 28px #0005;
}

.shop-recommended-title {
  font-size: 18px;
  font-weight: 900;
  color: #f0cf7c;
  margin-bottom: 8px;
}

.shop-recommended .primary {
  min-width: 112px;
}

.shop-type-grid {
  position: static;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 7px;
  margin-bottom: 14px;
}

.shop-type-grid .shop-type-button {
  text-align: center;
  width: 100%;
  padding: 10px 7px;
}

.shop-row {
  align-items: flex-start;
}

.shop-actions {
  flex-direction: column;
  align-items: flex-end;
}

.shop-actions button {
  min-width: 92px;
}

@media (max-width:680px) {
  .shop-recommended {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width:680px) {
  .shop-recommended .primary {
    width: 100%;
  }
}

@media (max-width:680px) {
  .shop-type-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    overflow: visible;
  }
}

@media (max-width:680px) {
  .shop-type-grid .shop-type-button {
    min-width: 0;
  }
}

@media (max-width:680px) {
  .shop-row {
    gap: 8px;
  }
}

@media (max-width:680px) {
  .shop-actions {
    min-width: 94px;
  }
}

.shop-recommended {
  gap: 12px;
  padding: 11px 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 7px 20px #0004;
}

.shop-recommended-content {
  min-width: 0;
  flex: 1;
}

.shop-recommended-title {
  font-size: 15px;
  margin-bottom: 5px;
}

.shop-recommended .item-card-name {
  font-size: 18px;
}

.shop-recommended .item-card-meta,
.shop-recommended .item-card-stat {
  font-size: 13px;
}

.shop-recommended .item-status {
  font-size: 11px;
}

.shop-recommended .primary {
  min-width: 96px;
  min-height: 38px;
  padding: 7px 14px;
}

.shop-type-grid {
  gap: 6px;
  margin-bottom: 10px;
}

.shop-type-grid .shop-type-button {
  height: 50px;
  min-height: 50px;
  padding: 6px;
  font-size: 14px;
}

.shop-item-list {
  display: grid;
  gap: 7px;
}

.shop-item {
  padding: 0;
}

.shop-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
}

.shop-item-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.shop-item-open:hover .item-card-name {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-item .item-card-name {
  font-size: 16px;
}

.shop-item .item-card-meta,
.shop-item .item-card-stat {
  display: inline;
  font-size: 12px;
}

.shop-item .item-card-meta::after {
  content: ' · ';
}

.shop-item .item-status {
  margin-top: 4px;
  font-size: 11px;
}

.shop-actions {
  display: grid;
  grid-template-columns: auto;
  justify-items: end;
  gap: 5px;
  min-width: 92px;
}

.shop-actions .price {
  font-size: 12px;
  white-space: nowrap;
}

.shop-actions button {
  min-width: 88px;
  min-height: 36px;
  padding: 6px 10px;
}

@media (max-width:680px) {
  .shop-recommended {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width:680px) {
  .shop-recommended .primary {
    width: auto;
  }
}

@media (max-width:480px) {
  .shop-recommended {
    padding: 10px;
  }
}

@media (max-width:480px) {
  .shop-recommended .primary {
    min-width: 84px;
  }
}

@media (max-width:480px) {
  .shop-type-grid .shop-type-button {
    height: 48px;
    min-height: 48px;
    font-size: 13px;
  }
}

@media (max-width:480px) {
  .shop-row {
    padding: 8px;
  }
}

@media (max-width:480px) {
  .shop-item .item-card-name {
    font-size: 15px;
  }
}

.shop-item.insufficient-funds {
  opacity: .76;
}

.shop-item.insufficient-funds .item-card-name {
  color: #8fb78b;
}

.shop-missing {
  font-size: 11px;
  color: #d59b75;
  white-space: nowrap;
}

.shop-item.insufficient-funds .shop-actions button {
  font-size: 11px;
}

.shop-recommended {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(150px,190px);
  align-items: center;
  gap: 18px;
}

.shop-recommended-content {
  min-width: 0;
}

.shop-recommended .primary {
  width: 100%;
  min-width: 0;
}

.shop-recommended-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 7px;
}

.shop-recommended.insufficient-funds {
  border-color: #8a5d43;
  background: linear-gradient(135deg,#30231d,#17191b);
}

.shop-recommended.insufficient-funds .primary {
  border-color: #5f4438;
  background: #2a211d;
  color: #bca89d;
}

@media (min-width:760px) {
  .shop-type-grid {
    grid-template-columns: repeat(6,minmax(0,1fr));
  }
}

@media (min-width:760px) {
  .shop-item-list {
    grid-template-columns: repeat(2,minmax(0,1fr));
    align-items: start;
  }
}

@media (min-width:760px) {
  .shop-item {
    height: 100%;
  }
}

@media (max-width:680px) {
  .shop-recommended {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width:680px) {
  .shop-recommended .primary {
    width: 100%;
  }
}

.shop-recommended-stats {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.shop-recommended-stats .reward-stat-line {
  display: block;
}

.shop-item-stats {
  display: grid;
  gap: 2px;
  margin-top: 3px;
}

.shop-item-stats .reward-stat-line {
  display: block;
  font-size: 11px;
  line-height: 1.25;
}

.shop-item-stats .reward-stat-base {
  color: #c9cdcf;
}

.shop-item-stats .reward-stat-comparison {
  font-size: 10px;
}

.shop-item .item-card-meta {
  display: block;
  font-size: 11px;
  line-height: 1.2;
  margin-top: 1px;
}

.shop-item .item-card-meta::after {
  content: none;
}

.shop-row {
  padding: 7px 8px;
  gap: 8px;
}

.shop-item-list {
  gap: 6px;
}

.shop-actions {
  gap: 3px;
  min-width: 88px;
}

.shop-actions .price {
  font-size: 11px;
}

.shop-actions button {
  min-height: 32px;
  padding: 5px 8px;
  font-size: 11px;
}

@media (max-width:480px) {
  .shop-item .item-card-name {
    font-size: 14px;
    line-height: 1.15;
  }
}

@media (max-width:480px) {
  .shop-item-stats .reward-stat-line {
    font-size: 10.5px;
  }
}

@media (max-width:480px) {
  .shop-item-stats .reward-stat-comparison {
    font-size: 9.5px;
  }
}

@media (max-width:480px) {
  .shop-row {
    padding: 6px 7px;
  }
}

@media (max-width:480px) {
  .shop-actions {
    min-width: 84px;
  }
}

@media (max-width:480px) {
  .shop-actions button {
    min-width: 82px;
    min-height: 31px;
  }
}

.shop-recommended-stats,
.shop-item-stats {
  justify-items: stretch;
  text-align: left;
}

.shop-recommended-stats .reward-stat-line,
.shop-item-stats .reward-stat-line {
  width: 100%;
  text-align: left;
}

/* Source replay: css/mobile.css */

@media (max-width:480px) {
  .shop-row {
    gap: 8px;
  }
}

@media (max-width:480px) {
  .shop-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width:480px) {
  .shop-grid {
    gap: 0;
  }
}

@media (max-width:480px) {
  .shop-row {
    padding: 6px 7px;
  }
}

@media (max-width:480px) {
  .shop-actions {
    min-width: 78px;
  }
}

@media (max-width:480px) {
  .shop-actions button {
    min-width: 76px;
  }
}

@media (max-width:480px) {
  .shop-item-open {
    min-width: 0;
  }
}

@media (max-width:480px) {
  .shop-item .item-card-name {
    font-size: 13px;
  }
}

@media (max-width:480px) {
  .shop-item-stats .reward-stat-line {
    font-size: 9.5px;
  }
}

/* Source replay: css/v0.10.0.css */

.shop-refresh-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 13px;
  border: 1px solid rgba(89,135,175,.35);
  border-radius: 13px;
  background: rgba(35,56,74,.3);
}

.shop-refresh-panel>div:first-child {
  display: grid;
  gap: 3px;
}

.shop-refresh-panel span,
.shop-refresh-panel small {
  color: var(--text-muted,#b9b0a5);
}

.shop-refresh-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-refresh-panel>small {
  flex: 1 0 100%;
  font-size: .73rem;
}

.special-rune-progress-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  text-align: left;
}

.special-rune-progress-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 3px 10px;
  padding: 10px;
  border: 1px solid rgba(166,132,190,.22);
  border-radius: 10px;
  background: rgba(54,37,65,.28);
}

.special-rune-progress-row small {
  grid-column: 1/-1;
}

/* Source replay: css/theme/ashen-items-overlays.css */

body.theme-ashen .shop-item,
body.theme-ashen .shop-recommended {
  border-color: rgba(68, 68, 60, .76);
  border-left-width: 2px;
  background: linear-gradient(105deg, rgba(28, 30, 27, .95), rgba(12, 15, 14, .98));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025), 0 5px 14px rgba(0, 0, 0, .18);
}

body.theme-ashen .shop-item:hover {
  border-color: rgba(112, 96, 71, .76);
}

body.theme-ashen .shop-item.common {
  border-left-color: #7d807a;
}

body.theme-ashen .shop-item.uncommon,
body.theme-ashen .shop-recommended.uncommon {
  border-color: rgba(68, 68, 60, .76);
  border-left-color: #5c9e67;
  background: linear-gradient(105deg, rgba(28, 30, 27, .95), rgba(12, 15, 14, .98));
}

body.theme-ashen .shop-item.rare,
body.theme-ashen .shop-recommended.rare {
  border-color: rgba(68, 68, 60, .76);
  border-left-color: #4d95c0;
  background: linear-gradient(105deg, rgba(28, 30, 27, .95), rgba(12, 15, 14, .98));
}

body.theme-ashen .shop-item.epic,
body.theme-ashen .shop-recommended.epic {
  border-color: rgba(68, 68, 60, .76);
  border-left-color: #b983cc;
  background: linear-gradient(105deg, rgba(28, 30, 27, .95), rgba(12, 15, 14, .98));
}

body.theme-ashen .shop-item.legendary,
body.theme-ashen .shop-recommended.legendary {
  border-color: rgba(68, 68, 60, .76);
  border-left-color: #d1a35f;
  background: linear-gradient(105deg, rgba(28, 30, 27, .95), rgba(12, 15, 14, .98));
}

body.theme-ashen .shop-item.mythic,
body.theme-ashen .shop-recommended.mythic {
  border-color: rgba(68, 68, 60, .76);
  border-left-color: #78d7cb;
  background: linear-gradient(105deg, rgba(28, 30, 27, .95), rgba(12, 15, 14, .98));
}

/* Source replay: css/theme/ashen-legacy-features.css */

body.theme-ashen .shop-locked-panel,
body.theme-ashen .shop-tutorial-offer {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(181, 145, 78, .42);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(50, 39, 25, .72), rgba(10, 16, 15, .94)),
    rgba(8, 12, 12, .9);
  box-shadow: inset 0 0 32px rgba(194, 153, 69, .05);
}

body.theme-ashen .shop-locked-panel {
  min-height: 220px;
  place-content: center;
  text-align: center;
  color: var(--muted, #a9aaa4);
}

body.theme-ashen .shop-locked-panel h3,
body.theme-ashen .shop-tutorial-offer h3 {
  margin: 0;
  color: #ece2c7;
}

body.theme-ashen .shop-lock-glyph {
  font-size: 42px;
  color: #b99452;
  opacity: .82;
}

body.theme-ashen .shop-tutorial-proof {
  padding: 10px 12px;
  border: 1px solid rgba(99, 191, 163, .32);
  border-radius: 10px;
  color: #9ddbc6;
  background: rgba(25, 67, 58, .25);
  font-weight: 700;
}

body.theme-ashen .shop-tutorial-card {
  max-width: 500px;
  border-color: rgba(186, 145, 73, .65);
}

body.theme-ashen .shop-tutorial-card p:not(.section-label) {
  line-height: 1.55;
  color: #c7c8c2;
}

body.theme-ashen .shop-tutorial-offer-note {
  padding: 10px 12px;
  border: 1px solid rgba(181,145,78,.38);
  border-radius: 10px;
  background: rgba(60,43,22,.30);
  color: #d8c28b;
}

/* Source replay: css/theme/ashen-polish.css */

body.theme-ashen .shop-rare-showcase {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  margin-bottom: 10px;
  border: 1px solid rgba(73,157,207,.58);
  border-radius: 12px;
  background: linear-gradient(135deg,rgba(13,34,47,.9),rgba(8,14,16,.94));
  box-shadow: inset 3px 0 0 #4a9fcf,0 0 20px rgba(74,159,207,.1);
}

body.theme-ashen .shop-rare-showcase h3 {
  margin: 2px 0 4px;
  color: #79c5ef;
}

body.theme-ashen .shop-rare-showcase small {
  color: #a9b8bd;
}

body.theme-ashen .shop-rare-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

body.theme-ashen .shop-rare-actions strong {
  color: #e2c584;
}

@media (max-width:620px) {
  body.theme-ashen .shop-rare-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-rare-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

body.theme-ashen .reward-shop-card {
  padding: 10px 11px;
  border: 1px solid rgba(112,129,121,.32);
  border-left: 3px solid currentColor;
  border-radius: 10px;
  background: linear-gradient(90deg,rgba(31,50,43,.34),rgba(6,10,9,.78) 38%);
  text-align: left;
}

body.theme-ashen .reward-shop-card-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #9eaaa5;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

body.theme-ashen .reward-shop-name {
  margin: 4px 0 5px;
  font-family: Georgia,serif;
  font-size: 17px;
  color: #d7d9d3;
}

body.theme-ashen .reward-shop-name.uncommon {
  color: #8dc88e;
}

body.theme-ashen .reward-shop-name.rare {
  color: #72bce8;
}

body.theme-ashen .reward-shop-name.epic {
  color: #d98cff;
}

body.theme-ashen .reward-shop-stats {
  display: grid;
  gap: 2px;
}

body.theme-ashen .reward-shop-stats .reward-stat-line {
  display: block;
  font-size: 12px;
}

@media (max-width:620px) {
  body.theme-ashen .reward-shop-stats .reward-stat-line {
    font-size: 11px;
  }
}

body.theme-ashen .shop-section-tabs {
  display: flex;
  gap: 6px;
  margin: 0 0 9px;
  overflow-x: auto;
  scrollbar-width: none;
}

body.theme-ashen .shop-section-tabs::-webkit-scrollbar {
  display: none;
}

body.theme-ashen .shop-section-tab {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  white-space: nowrap;
}

body.theme-ashen .shop-section-tab.active {
  border-color: #9a7a42;
  background: rgba(94,72,34,.45);
  color: #ead89d;
}

body.theme-ashen .shop-section-tab.future {
  opacity: .48;
}

body.theme-ashen .shop-highlights {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
  margin-bottom: 9px;
}

body.theme-ashen .shop-highlight {
  display: block;
  margin: 0;
  padding: 10px 11px;
  border-radius: 11px;
  min-width: 0;
}

body.theme-ashen .shop-highlight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

body.theme-ashen .shop-highlight-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c9ad70;
}

body.theme-ashen .shop-highlight-status {
  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}

body.theme-ashen .shop-highlight-status.better {
  color: #71cf91;
}

.shop-highlight-status.worse {
  color: #df7770;
}

.shop-highlight-status.equal {
  color: #aeb3b6;
}

body.theme-ashen .shop-highlight-main {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 10px;
  align-items: end;
}

body.theme-ashen .shop-highlight-copy {
  min-width: 0;
}

body.theme-ashen .shop-highlight h3 {
  margin: 0 0 2px;
  font-size: 18px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

body.theme-ashen .shop-highlight .item-card-meta {
  font-size: 10px;
  color: #9ca8a5;
}

body.theme-ashen .shop-compact-stats {
  display: grid;
  gap: 1px;
  margin-top: 4px;
  text-align: left;
}

body.theme-ashen .shop-compact-stats .reward-stat-line {
  display: block;
  font-size: 10px;
  line-height: 1.2;
}

body.theme-ashen .shop-compact-stats .reward-stat-comparison {
  font-size: 9px;
}

body.theme-ashen .shop-highlight-buy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 94px;
}

body.theme-ashen .shop-highlight-buy strong {
  font-size: 13px;
  color: #e2c584;
  white-space: nowrap;
}

body.theme-ashen .shop-highlight-buy small {
  font-size: 9px;
  color: #d59b75;
  white-space: nowrap;
}

body.theme-ashen .shop-highlight-buy .compact-button {
  min-width: 92px;
  min-height: 32px;
  padding: 5px 8px;
  font-size: 11px;
}

body.theme-ashen .shop-type-grid {
  display: flex;
  gap: 6px;
  margin: 0 0 9px;
  overflow-x: auto;
  scrollbar-width: none;
}

body.theme-ashen .shop-type-grid::-webkit-scrollbar {
  display: none;
}

body.theme-ashen .shop-type-grid .shop-type-button {
  flex: 0 0 auto;
  width: auto;
  min-width: 76px;
  height: 36px;
  min-height: 36px;
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 9px;
}

body.theme-ashen .shop-item-list.grouped {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

body.theme-ashen .shop-slot-group {
  border: 1px solid rgba(112,129,121,.28);
  border-radius: 10px;
  background: rgba(5,10,9,.58);
  overflow: hidden;
}

body.theme-ashen .shop-slot-group>summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 10px;
  cursor: pointer;
  list-style: none;
}

body.theme-ashen .shop-slot-group>summary::-webkit-details-marker {
  display: none;
}

body.theme-ashen .shop-slot-group>summary::before {
  content: '›';
  font-size: 18px;
  color: #7fb6a9;
  transition: transform .16s ease;
}

body.theme-ashen .shop-slot-group[open]>summary::before {
  transform: rotate(90deg);
}

body.theme-ashen .shop-slot-group>summary>span {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
}

body.theme-ashen .shop-slot-group>summary strong {
  font-family: Georgia,serif;
  font-size: 16px;
  color: #d9ddd6;
}

body.theme-ashen .shop-slot-group>summary small {
  font-size: 9px;
  color: #84918d;
  white-space: nowrap;
}

body.theme-ashen .shop-slot-group>summary em {
  font-style: normal;
  font-size: 9px;
  color: #b8a46c;
  text-align: right;
  white-space: nowrap;
}

body.theme-ashen .shop-slot-items {
  display: grid;
  gap: 6px;
  padding: 0 7px 7px;
  border-top: 1px solid rgba(112,129,121,.2);
}

body.theme-ashen .shop-slot-items .shop-item:first-child {
  margin-top: 7px;
}

body.theme-ashen .shop-slot-items .shop-item {
  margin: 0;
}

@media (max-width:620px) {
  body.theme-ashen .shop-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-highlight {
    padding: 9px 10px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-highlight h3 {
    font-size: 16px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-highlight-head {
    margin-bottom: 4px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-highlight-status {
    max-width: 47%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-highlight-main {
    gap: 7px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-highlight-buy {
    min-width: 86px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-highlight-buy .compact-button {
    min-width: 84px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-type-grid .shop-type-button {
    min-width: 70px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-slot-group>summary {
    padding: 7px 8px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-slot-group>summary strong {
    font-size: 15px;
  }
}

body.theme-ashen .shop-section-tabs {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 5px;
  overflow: visible;
}

body.theme-ashen .shop-section-tab {
  min-width: 0;
  padding: 6px 5px;
  border-radius: 9px;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.theme-ashen .shop-showcase-note {
  display: grid;
  gap: 2px;
  margin-bottom: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(104,130,120,.3);
  border-radius: 9px;
  background: rgba(6,12,10,.62);
}

body.theme-ashen .shop-showcase-note strong {
  color: #d9c184;
  font-size: 12px;
}

body.theme-ashen .shop-showcase-note span {
  color: #91a09a;
  font-size: 10px;
  line-height: 1.35;
}

body.theme-ashen .shop-showcase-rare-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
  margin-bottom: 8px;
}

body.theme-ashen .shop-showcase-card {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(102,129,119,.38);
  border-radius: 11px;
  background: linear-gradient(145deg,rgba(9,17,15,.94),rgba(4,8,8,.96));
  box-shadow: inset 3px 0 0 #6aaa70;
}

body.theme-ashen .shop-showcase-card.rare {
  border-color: rgba(74,159,207,.56);
  box-shadow: inset 3px 0 0 #4a9fcf,0 0 18px rgba(74,159,207,.08);
}

body.theme-ashen .shop-showcase-card-main {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 8px;
  align-items: end;
}

body.theme-ashen .shop-showcase-card h3 {
  margin: 0 0 2px;
  font-size: 17px;
  line-height: 1.08;
  overflow-wrap: break-word;
  word-break: normal;
}

body.theme-ashen .shop-showcase-card .shop-highlight-status {
  max-width: 52%;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.theme-ashen .shop-showcase-green {
  margin-bottom: 0;
}

body.theme-ashen .shop-equipment-head {
  display: grid;
  gap: 5px;
  margin-bottom: 8px;
}

body.theme-ashen .shop-equipment-head>small {
  color: #82908b;
  font-size: 9px;
  text-align: right;
}

body.theme-ashen .shop-future-assortment {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 260px;
  padding: 30px 18px;
  border: 1px dashed rgba(112,139,130,.42);
  border-radius: 12px;
  background: rgba(5,10,9,.55);
  text-align: center;
}

body.theme-ashen .shop-future-assortment .shop-future-glyph {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid #55766d;
  border-radius: 50%;
  color: #79c4b5;
  font-size: 25px;
}

body.theme-ashen .shop-future-assortment h3 {
  margin: 0;
  color: #d8d9d3;
  font-family: Georgia,serif;
}

body.theme-ashen .shop-future-assortment p {
  max-width: 330px;
  margin: 0;
  color: #93a09c;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width:620px) {
  body.theme-ashen .shop-showcase-rare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-showcase-card {
    padding: 9px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-showcase-card h3 {
    font-size: 15px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-showcase-card-main {
    gap: 6px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-showcase-card .shop-highlight-buy {
    min-width: 82px;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-section-tab {
    font-size: 9px;
  }
}

@media (max-width:380px) {
  body.theme-ashen .shop-section-tabs {
    gap: 4px;
  }
}

@media (max-width:380px) {
  body.theme-ashen .shop-section-tab {
    padding: 6px 3px;
    font-size: 8.5px;
  }
}

body.theme-ashen .shop-item-open,
body.theme-ashen .shop-item-stats,
body.theme-ashen .shop-highlight-copy,
body.theme-ashen .shop-compact-stats,
body.theme-ashen .shop-recommended-stats,
body.theme-ashen .shop-tutorial-offer {
  text-align: left !important;
  justify-items: start !important;
}

body.theme-ashen .shop-item-open,
body.theme-ashen .shop-highlight-copy,
body.theme-ashen .shop-compact-stats,
body.theme-ashen .shop-recommended-stats {
  width: 100%;
  min-width: 0;
}

/* Source replay: css/theme/ashen-current.css */

body.theme-ashen .shop-showcase-card .shop-highlight-head {
  justify-content: flex-start;
}

body.theme-ashen .shop-showcase-empty {
  grid-column: 1/-1;
  margin: 0;
}

/* Source replay: css/hero-profile.css */

.shop-item:nth-child(3n+2) .item-icon.epic::after,
.shop-item:nth-child(3n+2) .item-icon.legendary::after,
.shop-item:nth-child(3n+2) .item-icon.mythic::after {
  animation-delay: -1.7s;
}

.shop-item:nth-child(3n) .item-icon.epic::after,
.shop-item:nth-child(3n) .item-icon.legendary::after,
.shop-item:nth-child(3n) .item-icon.mythic::after {
  animation-delay: -3.4s;
}

body.theme-ashen .shop-showcase-card-main {
  grid-template-columns: auto minmax(0,1fr) auto !important;
  align-items: center;
}

body.theme-ashen .shop-showcase-card-main>.item-icon {
  align-self: start;
}

@media (max-width:420px) {
  body.theme-ashen .shop-showcase-card-main {
    grid-template-columns: 42px minmax(0,1fr) !important;
  }
}

@media (max-width:420px) {
  body.theme-ashen .shop-showcase-card-main .shop-highlight-buy {
    grid-column: 1/-1;
    width: 100%;
  }
}

/* Source replay: css/v0.9.2.css */

body.theme-ashen .shop-showcase-card-main > .item-icon {
  align-self: start;
  max-width: 100%;
}

body.theme-ashen .shop-highlight-copy {
  min-width: 0;
}

body.theme-ashen .shop-highlight-copy h3,
body.theme-ashen .shop-highlight-copy .item-card-meta,
body.theme-ashen .shop-highlight-copy .reward-stat-line {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 430px) {
  body.theme-ashen .shop-showcase-card-main {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    align-items: start !important;
    column-gap: 9px !important;
  }
}

@media (max-width: 430px) {
  body.theme-ashen .shop-showcase-card-main > .item-icon {
    width: 48px !important;
    height: 48px !important;
  }
}

@media (max-width: 430px) {
  body.theme-ashen .shop-showcase-card-main .shop-highlight-buy {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
  }
}

/* Source replay: css/v0.9.3.css */

body.theme-ashen .shop-section-tab {
  font-size: 11px;
}

body.theme-ashen .shop-showcase-card-main {
  grid-template-columns: var(--ff-icon-item-medium) minmax(0, 1fr) auto !important;
  gap: 11px;
  align-items: start !important;
}

body.theme-ashen .shop-showcase-card-main > .item-icon {
  width: var(--ff-icon-item-medium) !important;
  height: var(--ff-icon-item-medium) !important;
}

body.theme-ashen .shop-highlight-copy h3 {
  font-size: 19px;
  line-height: 1.12;
}

body.theme-ashen .shop-highlight-copy .item-card-meta {
  font-size: 12px;
}

body.theme-ashen .shop-compact-stats .reward-stat-line {
  font-size: 12px;
  line-height: 1.25;
}

@media (max-width: 520px) {
  body.theme-ashen .shop-showcase-card-main {
    grid-template-columns: var(--ff-icon-item-medium) minmax(0, 1fr) !important;
    column-gap: 10px !important;
  }
}

@media (max-width: 520px) {
  body.theme-ashen .shop-showcase-card-main .shop-highlight-buy {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 7px;
  }
}

@media (max-width: 520px) {
  body.theme-ashen .shop-highlight-copy h3 {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  body.theme-ashen .shop-highlight-copy .item-card-meta,
  body.theme-ashen .shop-compact-stats .reward-stat-line {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  body.theme-ashen .shop-section-tab {
    font-size: 11px !important;
    letter-spacing: 0;
  }
}

@media (max-width: 360px) {
  body.theme-ashen .shop-section-tabs {
    gap: 3px !important;
  }
}

@media (max-width: 360px) {
  body.theme-ashen .shop-section-tab {
    padding-inline: 2px !important;
  }
}

@media (min-width: 700px) {
  body.theme-ashen .shop-section-tab {
    font-size: 12px;
  }
}

/* Source replay: css/ui-system.css */

body.theme-ashen .shop-section-tabs {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
  padding: 4px;
  border: 1px solid var(--ui-border);
  border-radius: var(--ui-radius-md);
  background: linear-gradient(180deg,var(--ui-tabs-surface),rgba(16,19,18,.96));
  box-shadow: inset 0 1px rgba(255,255,255,.025);
  overflow: visible;
}

body.theme-ashen .shop-section-tabs {
  grid-template-columns: repeat(4,minmax(0,1fr));
}

body.theme-ashen .shop-section-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: var(--ui-control-height);
  padding: 8px 7px;
  border: 1px solid transparent;
  border-radius: var(--ui-radius-sm);
  background: var(--ui-tab-idle);
  color: #aeb7b2;
  font: 800 11px/1.1 system-ui,sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: none;
}

body.theme-ashen .shop-section-tab.active {
  border-color: var(--ui-border-strong);
  background: linear-gradient(180deg,var(--ui-accent-bg),rgba(11,31,27,.9));
  color: #ecf8f4;
  box-shadow: inset 0 1px rgba(222,255,247,.1),0 0 0 1px rgba(101,199,180,.07);
}

body.theme-ashen .shop-content-heading {
  margin-bottom: 10px;
}

body.theme-ashen .shop-section-tabs {
  margin-bottom: 10px;
}

body.theme-ashen .shop-showcase-card,
body.theme-ashen .shop-item {
  border-radius: var(--ui-radius-md);
}

body.theme-ashen .shop-showcase-card {
  padding: 9px 10px;
}

body.theme-ashen .shop-showcase-card .shop-highlight-head {
  margin-bottom: 5px;
}

body.theme-ashen .shop-showcase-card-main {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) auto !important;
  gap: 9px;
  align-items: center !important;
}

body.theme-ashen .shop-showcase-card-main>.item-icon {
  width: 52px !important;
  height: 52px !important;
  align-self: center;
}

body.theme-ashen .shop-highlight-copy {
  min-width: 0;
}

body.theme-ashen .shop-highlight-copy h3 {
  margin-bottom: 2px;
  font-size: 17px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

body.theme-ashen .shop-highlight-buy {
  grid-column: auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 7px !important;
  min-width: 0 !important;
  width: auto !important;
  margin: 0 !important;
}

body.theme-ashen .shop-highlight-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  min-width: 0;
}

body.theme-ashen .shop-highlight-price strong,
body.theme-ashen .shop-highlight-price small {
  white-space: nowrap;
}

body.theme-ashen .shop-highlight-buy .compact-button {
  flex: 0 0 auto;
  min-width: 88px;
  min-height: 34px;
  padding: 6px 9px;
}

body.theme-ashen .shop-compact-stats {
  margin-top: 4px;
}

body.theme-ashen .shop-compact-stats .reward-stat-line {
  line-height: 1.2;
}

body.theme-ashen .shop-type-menu {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

body.theme-ashen .shop-type-menu::-webkit-scrollbar {
  display: none;
}

body.theme-ashen .shop-type-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
}

@media (max-width:767px) {
  body.theme-ashen .shop-showcase-card-main {
    grid-template-columns: 48px minmax(0,1fr) auto !important;
  }
}

@media (max-width:767px) {
  body.theme-ashen .shop-showcase-card-main>.item-icon {
    width: 48px !important;
    height: 48px !important;
  }
}

@media (max-width:767px) {
  body.theme-ashen .shop-highlight-buy {
    grid-column: auto !important;
    flex-direction: row !important;
  }
}

@media (max-width:520px) {
  body.theme-ashen .shop-showcase-card-main {
    grid-template-columns: 42px minmax(0,1fr) !important;
    gap: 7px;
  }
}

@media (max-width:520px) {
  body.theme-ashen .shop-showcase-card-main>.item-icon {
    width: 42px !important;
    height: 42px !important;
  }
}

@media (max-width:520px) {
  body.theme-ashen .shop-highlight-buy {
    grid-column: 1/-1 !important;
    width: 100% !important;
    margin-top: 2px !important;
  }
}

@media (max-width:520px) {
  body.theme-ashen .shop-highlight-price {
    margin-right: auto;
    align-items: flex-start;
  }
}

@media (max-width:520px) {
  body.theme-ashen .shop-highlight-buy .compact-button {
    min-width: 96px;
  }
}

@media (max-width:479px) {
  body.theme-ashen .shop-section-tab {
    min-height: 38px;
    padding: 7px 3px;
    font-size: 9px;
  }
}

@media (max-width:359px) {
  body.theme-ashen .shop-section-tab {
    font-size: 8px;
    letter-spacing: -.02em;
  }
}

@media (min-width:768px) {
  body.theme-ashen.screen-shop-active .screen-panel {
    padding: 16px;
  }
}

/* Source replay: css/v0.9.49.css */

body.theme-ashen :is(.compact-button,.shop-type-button,.inventory-category-button,.client-refresh-button) {
  min-height: var(--ui-compact-height);
  line-height: 1.15;
}

body.theme-ashen .shop-highlight-buy .compact-button {
  min-height: 40px;
  padding: 7px 10px;
}

@media (pointer:coarse) {
  body.theme-ashen :is(.section-tab,.hero-tab,.path-tab-button,.inventory-mode-tab,.shop-section-tab,.inventory-category-button,.shop-type-button,.client-refresh-button) {
    min-height: var(--ui-touch-target);
  }
}

@media (max-width:479px) {
  body.theme-ashen :is(.section-tab,.hero-tab,.path-tab-button,.inventory-mode-tab,.shop-section-tab) {
    padding-inline: 4px;
    font-size: 10.5px;
    line-height: 1.15;
  }
}

@media (max-width:479px) {
  body.theme-ashen .shop-type-button {
    font-size: 10.5px;
  }
}

@media (max-width:359px) {
  body.theme-ashen :is(.section-tab,.hero-tab,.path-tab-button,.inventory-mode-tab,.shop-section-tab) {
    font-size: 9.5px;
  }
}

body.theme-ashen .shop-showcase-card-main {
  grid-template-columns: 52px minmax(0,1fr) minmax(118px,auto) !important;
  align-items: center !important;
}

body.theme-ashen .shop-highlight-buy {
  grid-column: auto !important;
  align-self: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 5px !important;
  min-width: 118px !important;
  width: auto !important;
  margin: 0 !important;
}

body.theme-ashen .shop-highlight-price {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center;
  gap: 1px;
  min-width: 0;
  margin: 0 !important;
  text-align: center;
}

body.theme-ashen .shop-highlight-price strong {
  color: #ead08b;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

body.theme-ashen .shop-highlight-price small {
  color: #d59b75;
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

body.theme-ashen .shop-highlight-buy .compact-button {
  width: 100%;
  min-width: 118px;
  min-height: 40px;
  margin: 0;
}

@media (max-width:520px) {
  body.theme-ashen .shop-showcase-card-main {
    grid-template-columns: 42px minmax(0,1fr) minmax(112px,auto) !important;
    gap: 7px !important;
  }
}

@media (max-width:520px) {
  body.theme-ashen .shop-highlight-buy {
    grid-column: 3 !important;
    grid-row: 1 !important;
    min-width: 112px !important;
    width: auto !important;
    margin: 0 !important;
  }
}

@media (max-width:520px) {
  body.theme-ashen .shop-highlight-price {
    align-items: center !important;
    margin: 0 !important;
  }
}

@media (max-width:520px) {
  body.theme-ashen .shop-highlight-buy .compact-button {
    min-width: 112px;
  }
}

@media (max-width:389px) {
  body.theme-ashen .shop-showcase-card-main {
    grid-template-columns: 40px minmax(0,1fr) 104px !important;
    gap: 6px !important;
  }
}

@media (max-width:389px) {
  body.theme-ashen .shop-showcase-card-main>.item-icon {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width:389px) {
  body.theme-ashen .shop-highlight-buy {
    min-width: 104px !important;
  }
}

@media (max-width:389px) {
  body.theme-ashen .shop-highlight-buy .compact-button {
    min-width: 104px;
    padding-inline: 7px;
  }
}

@media (max-width:389px) {
  body.theme-ashen .shop-highlight-price strong {
    font-size: 15px;
  }
}

@media (max-width:389px) {
  body.theme-ashen .shop-highlight-price small {
    font-size: 9px;
  }
}

@media (max-width:339px) {
  body.theme-ashen .shop-showcase-card-main {
    grid-template-columns: 38px minmax(0,1fr) 96px !important;
    gap: 5px !important;
  }
}

@media (max-width:339px) {
  body.theme-ashen .shop-showcase-card-main>.item-icon {
    width: 38px !important;
    height: 38px !important;
  }
}

@media (max-width:339px) {
  body.theme-ashen .shop-highlight-buy,
  body.theme-ashen .shop-highlight-buy .compact-button {
    min-width: 96px !important;
  }
}

@media (max-width:339px) {
  body.theme-ashen .shop-highlight-price strong {
    font-size: 14px;
  }
}

body.theme-ashen:is(
  .screen-battle-active,
  .screen-map-active,
  .screen-ruins-active,
  .screen-inventory-active,
  .screen-shop-active,
  .screen-hero-active
) :is(button.primary,button.secondary,button.danger,a.button-link) {
  box-sizing: border-box;
  min-width: 0;
  height: var(--ui-button-standard-height);
  min-height: var(--ui-button-standard-height);
  max-height: var(--ui-button-standard-height);
  padding: 0 12px;
  border-radius: var(--ui-button-radius);
  font-size: var(--ui-button-font-size);
  line-height: 1.15;
  overflow: hidden;
  text-wrap: balance;
}

body.theme-ashen :is(
  .section-tab,
  .hero-tab,
  .path-tab-button,
  .inventory-mode-tab,
  .shop-section-tab
) {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  padding-block: 0 !important;
  padding-inline: 8px;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.theme-ashen :is(
  .inventory-category-button,
  .shop-type-button,
  .rune-vault-tab,
  .client-refresh-button
) {
  box-sizing: border-box;
  height: var(--ui-button-compact-height);
  min-height: var(--ui-button-compact-height);
  max-height: var(--ui-button-compact-height);
  padding-block: 0;
  line-height: 1;
}

body.theme-ashen :is(.inventory-category-button,.shop-type-button) {
  padding-inline: 11px;
  font-size: var(--ui-button-font-size-compact);
}

body.theme-ashen:is(
  .screen-battle-active,
  .screen-map-active,
  .screen-ruins-active,
  .screen-inventory-active,
  .screen-shop-active,
  .screen-hero-active
) button.compact-button {
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  padding: 0 11px;
  font-size: 12px;
  line-height: 1.1;
}

body.theme-ashen :is(
  .opening-action,
  .reward-main-action,
  .quest-claim,
  .shop-tutorial-offer .tutorial-ready,
  .progress-reset-card .primary
) {
  height: var(--ui-button-prominent-height) !important;
  min-height: var(--ui-button-prominent-height) !important;
  max-height: var(--ui-button-prominent-height) !important;
}

body.theme-ashen .shop-highlight-buy .compact-button,
body.theme-ashen .shop-actions button {
  box-sizing: border-box;
  height: var(--ui-button-standard-height) !important;
  min-height: var(--ui-button-standard-height) !important;
  max-height: var(--ui-button-standard-height) !important;
  padding-block: 0 !important;
  border-radius: var(--ui-button-radius);
  line-height: 1.1;
}

@media (pointer:coarse) {
  body.theme-ashen :is(
      .inventory-category-button,
      .shop-type-button,
      .rune-vault-tab,
      .client-refresh-button
    ) {
    height: 44px;
    min-height: 44px;
    max-height: 44px;
  }
}

@media (max-width:479px) {
  body.theme-ashen:is(
    .screen-battle-active,
      .screen-map-active,
      .screen-ruins-active,
      .screen-inventory-active,
      .screen-shop-active,
      .screen-hero-active
    ) :is(button.primary,button.secondary,button.danger,a.button-link) {
    padding-inline: 9px;
    font-size: 12px;
  }
}

@media (max-width:479px) {
  body.theme-ashen :is(
      .section-tab,
      .hero-tab,
      .path-tab-button,
      .inventory-mode-tab,
      .shop-section-tab
    ) {
    padding-inline: 4px !important;
    font-size: 10.5px;
    letter-spacing: -.01em;
  }
}

@media (max-width:479px) {
  body.theme-ashen :is(.inventory-category-button,.shop-type-button) {
    padding-inline: 9px;
    font-size: 10.5px;
  }
}

@media (max-width:359px) {
  body.theme-ashen :is(
      .section-tab,
      .hero-tab,
      .path-tab-button,
      .inventory-mode-tab,
      .shop-section-tab
    ) {
    font-size: 9.5px !important;
    letter-spacing: -.025em;
  }
}

@media (max-width:359px) {
  body.theme-ashen :is(.inventory-category-button,.shop-type-button,.rune-vault-tab) {
    font-size: 9.5px;
  }
}

@media (max-width:359px) {
  body.theme-ashen .shop-highlight-buy .compact-button,
  body.theme-ashen .shop-actions button {
    padding-inline: 7px !important;
    font-size: 11px;
  }
}

@media (min-width:768px) {
  body.theme-ashen:is(
    .screen-battle-active,
      .screen-map-active,
      .screen-ruins-active,
      .screen-inventory-active,
      .screen-shop-active,
      .screen-hero-active
    ) :is(button.primary,button.secondary,button.danger,a.button-link) {
    padding-inline: 14px;
  }
}

@media (min-width:768px) {
  body.theme-ashen :is(
      .section-tab,
      .hero-tab,
      .path-tab-button,
      .inventory-mode-tab,
      .shop-section-tab
    ) {
    padding-inline: 10px;
  }
}

body.theme-ashen.screen-shop-active #screenShop > .screen-panel {
  border-color: var(--ui-main-section-border);
  background: var(--ui-main-section-background);
}

/* Source replay: css/v0.10.0-rc28.css */

body.theme-ashen .shop-showcase-note {
  padding: 7px 9px;
}

body.theme-ashen .shop-showcase-note span {
  line-height: 1.25;
}

body.theme-ashen .shop-refresh-panel.compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 9px;
  margin-bottom: 8px;
}

body.theme-ashen .shop-refresh-panel.compact>div:first-child {
  display: grid;
  gap: 1px;
}

body.theme-ashen .shop-refresh-panel.compact strong {
  font-size: 12px;
}

body.theme-ashen .shop-refresh-panel.compact span {
  font-size: 9px;
  color: #96a39e;
}

body.theme-ashen .shop-refresh-panel.compact .shop-refresh-actions {
  display: flex;
  gap: 5px;
}

body.theme-ashen .shop-showcase-card {
  padding: 8px 9px;
}

body.theme-ashen .shop-showcase-card-main {
  grid-template-columns: 42px minmax(0,1fr) auto !important;
  align-items: center !important;
  gap: 7px !important;
}

body.theme-ashen .shop-showcase-card-main>.item-icon {
  width: 40px !important;
  height: 40px !important;
}

body.theme-ashen .shop-showcase-card h3 {
  font-size: 15px;
}

body.theme-ashen .shop-compact-stats {
  margin-top: 2px;
  max-height: 38px;
  overflow: hidden;
}

body.theme-ashen .shop-highlight-buy {
  min-width: 84px;
}

body.theme-ashen .shop-highlight-buy .compact-button {
  min-width: 82px;
}

body.theme-ashen .shop-refresh-confirm-card {
  width: min(380px,100%);
}

body.theme-ashen .shop-refresh-confirm-card h2 {
  margin: 4px 0 8px;
}

body.theme-ashen .shop-refresh-confirm-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(114,149,140,.35);
  border-radius: 10px;
  background: rgba(5,12,10,.7);
}

body.theme-ashen .shop-refresh-confirm-summary strong {
  color: #e0c279;
}

body.theme-ashen .shop-refresh-confirm-hint {
  font-size: 12px;
  color: #aab5b0;
  line-height: 1.4;
}

body.theme-ashen .shop-refresh-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

@media (max-width:620px) {
  body.theme-ashen .shop-showcase-rare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-showcase-card-main {
    grid-template-columns: 40px minmax(0,1fr) 82px !important;
  }
}

body.theme-ashen .shop-showcase-rare-grid {
  grid-template-columns: minmax(0,1fr) !important;
}

body.theme-ashen .shop-refresh-panel.compact {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) auto !important;
}

body.theme-ashen .shop-refresh-panel.compact .shop-refresh-actions {
  justify-content: flex-end;
}

@media (max-width:430px) {
  body.theme-ashen .shop-refresh-panel.compact {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width:430px) {
  body.theme-ashen .shop-refresh-panel.compact .shop-refresh-actions {
    width: 100%;
  }
}

@media (max-width:430px) {
  body.theme-ashen .shop-refresh-panel.compact .shop-refresh-actions button {
    flex: 1;
  }
}

.shop-unified-showcase {
  display: grid;
  gap: 12px;
}

.shop-rune-day {
  padding: 12px;
  border: 1px solid rgba(110, 207, 176, .28);
  border-radius: 14px;
  background: rgba(8, 20, 18, .72);
}

.shop-rune-day__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.shop-rune-day__name {
  font-weight: 800;
  color: var(--text-strong, #f5f0df);
}

.shop-rune-day__meta {
  font-size: .78rem;
  color: var(--text-muted, #a8afa6);
}

.shop-refresh-note {
  margin-top: 8px;
  font-size: .78rem;
  color: var(--text-muted, #a8afa6);
}

/* Source replay: css/v0.10.0-rc31.css */

body.theme-ashen .shop-showcase-note {
  padding: 7px 9px;
}

body.theme-ashen .shop-showcase-note span {
  line-height: 1.25;
}

body.theme-ashen .shop-refresh-panel.compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 9px;
  margin-bottom: 8px;
}

body.theme-ashen .shop-refresh-panel.compact>div:first-child {
  display: grid;
  gap: 1px;
}

body.theme-ashen .shop-refresh-panel.compact strong {
  font-size: 12px;
}

body.theme-ashen .shop-refresh-panel.compact span {
  font-size: 9px;
  color: #96a39e;
}

body.theme-ashen .shop-refresh-panel.compact .shop-refresh-actions {
  display: flex;
  gap: 5px;
}

body.theme-ashen .shop-showcase-card {
  padding: 8px 9px;
}

body.theme-ashen .shop-showcase-card-main {
  grid-template-columns: 42px minmax(0,1fr) auto !important;
  align-items: center !important;
  gap: 7px !important;
}

body.theme-ashen .shop-showcase-card-main>.item-icon {
  width: 40px !important;
  height: 40px !important;
}

body.theme-ashen .shop-showcase-card h3 {
  font-size: 15px;
}

body.theme-ashen .shop-compact-stats {
  margin-top: 2px;
  max-height: 38px;
  overflow: hidden;
}

body.theme-ashen .shop-highlight-buy {
  min-width: 84px;
}

body.theme-ashen .shop-highlight-buy .compact-button {
  min-width: 82px;
}

body.theme-ashen .shop-refresh-confirm-card {
  width: min(380px,100%);
}

body.theme-ashen .shop-refresh-confirm-card h2 {
  margin: 4px 0 8px;
}

body.theme-ashen .shop-refresh-confirm-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(114,149,140,.35);
  border-radius: 10px;
  background: rgba(5,12,10,.7);
}

body.theme-ashen .shop-refresh-confirm-summary strong {
  color: #e0c279;
}

body.theme-ashen .shop-refresh-confirm-hint {
  font-size: 12px;
  color: #aab5b0;
  line-height: 1.4;
}

body.theme-ashen .shop-refresh-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

@media (max-width:620px) {
  body.theme-ashen .shop-showcase-rare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:620px) {
  body.theme-ashen .shop-showcase-card-main {
    grid-template-columns: 40px minmax(0,1fr) 82px !important;
  }
}

body.theme-ashen .shop-showcase-rare-grid {
  grid-template-columns: minmax(0,1fr) !important;
}

body.theme-ashen .shop-refresh-panel.compact {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) auto !important;
}

body.theme-ashen .shop-refresh-panel.compact .shop-refresh-actions {
  justify-content: flex-end;
}

@media (max-width:430px) {
  body.theme-ashen .shop-refresh-panel.compact {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width:430px) {
  body.theme-ashen .shop-refresh-panel.compact .shop-refresh-actions {
    width: 100%;
  }
}

@media (max-width:430px) {
  body.theme-ashen .shop-refresh-panel.compact .shop-refresh-actions button {
    flex: 1;
  }
}

.shop-unified-showcase {
  display: grid;
  gap: 12px;
}

.shop-rune-day {
  padding: 12px;
  border: 1px solid rgba(110, 207, 176, .28);
  border-radius: 14px;
  background: rgba(8, 20, 18, .72);
}

.shop-rune-day__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.shop-rune-day__name {
  font-weight: 800;
  color: var(--text-strong, #f5f0df);
}

.shop-rune-day__meta {
  font-size: .78rem;
  color: var(--text-muted, #a8afa6);
}

.shop-refresh-note {
  margin-top: 8px;
  font-size: .78rem;
  color: var(--text-muted, #a8afa6);
}

.rune-day-card {
  margin-top: 10px;
}

.rune-day-note {
  display: block;
  color: var(--muted,#9fab9f);
  font-size: 11px;
  line-height: 1.35;
}

.shop-showcase-rare-grid {
  display: grid;
  gap: 10px;
}

.shop-showcase-note {
  margin-bottom: 10px;
}

.shop-refresh-panel.compact {
  margin-bottom: 10px;
}

@media (max-width:370px) {
  .item-surface-card.shop,
  .rune-day-card {
    grid-template-columns: 54px minmax(0,1fr);
  }
}

@media (max-width:370px) {
  .item-surface-card.shop .item-surface-side,
  .rune-day-card .item-surface-side {
    grid-column: 1/-1;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width:370px) {
  .item-surface-card.shop .item-surface-side .compact-button,
  .rune-day-card .item-surface-side .compact-button {
    width: auto;
    min-width: 128px;
  }
}

.shop-rune-day-block {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(110,207,176,.28);
  border-radius: 15px;
  background: linear-gradient(145deg,rgba(7,20,17,.88),rgba(10,15,13,.96));
}

.shop-rune-day-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px;
}

.shop-rune-day-heading>div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.shop-rune-day-heading strong {
  color: #ece4d4;
  font-size: 16px;
}

.shop-rune-day-heading span {
  color: #9fab9f;
  font-size: 11px;
  line-height: 1.35;
}

.shop-rune-day-heading>b {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(213,184,111,.28);
  border-radius: 999px;
  background: rgba(67,51,19,.28);
  color: #e6c876;
  font-size: 11px;
  white-space: nowrap;
}

.shop-rune-day-grid {
  display: grid;
  gap: 8px;
}

.shop-rune-day-grid .rune-day-card {
  margin: 0;
}

.rune-day-card.purchased {
  border-color: rgba(116,168,127,.28);
  background: linear-gradient(145deg,rgba(13,34,23,.72),rgba(10,16,13,.92));
  opacity: .78;
}

.rune-day-card.purchased .rune-surface-icon {
  filter: saturate(.65);
}

.rune-day-card.purchased .item-surface-side button {
  color: #9fc9aa;
  border-color: rgba(111,179,128,.3);
  background: rgba(42,82,52,.24);
}

.shop-rune-day-rule {
  display: block;
  padding: 0 2px;
  color: #89978f;
  font-size: 10px;
  line-height: 1.4;
}

.shop-rune-day-complete {
  display: grid;
  gap: 2px;
  padding: 10px 11px;
  border: 1px solid rgba(111,179,128,.35);
  border-radius: 11px;
  background: rgba(35,78,47,.22);
}

.shop-rune-day-complete strong {
  color: #cce8d2;
  font-size: 12px;
}

.shop-rune-day-complete span {
  color: #9fb4a5;
  font-size: 10px;
}

.rune-day-card.rune-purchase-success {
  animation: rc30RuneCardSuccess .72s ease-out both;
}

.shop-rune-flyer {
  position: fixed;
  z-index: 1200;
  transform: translate(-50%,-50%);
  pointer-events: none;
  color: #f0dda4;
  font-size: 30px;
  text-shadow: 0 0 14px rgba(226,194,108,.85),0 4px 10px rgba(0,0,0,.85);
  animation: rc30RuneFly .72s cubic-bezier(.2,.72,.25,1) forwards;
}

.shop-rune-nav-plus {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  padding: 2px 5px;
  border-radius: 999px;
  background: #d7b96d;
  color: #182018;
  font-size: 10px;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(0,0,0,.45);
  animation: rc30RunePlus 1s ease-out both;
}

.shop-rune-purchase-toast {
  position: fixed;
  z-index: 1190;
  left: 50%;
  bottom: calc(82px + env(safe-area-inset-bottom));
  display: grid;
  gap: 2px;
  min-width: 210px;
  max-width: calc(100vw - 28px);
  padding: 10px 14px;
  border: 1px solid rgba(213,184,111,.48);
  border-radius: 12px;
  background: rgba(12,22,18,.96);
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
  opacity: 0;
  transform: translate(-50%,10px);
  transition: opacity .18s ease,transform .18s ease;
  pointer-events: none;
  text-align: center;
}

.shop-rune-purchase-toast.show {
  opacity: 1;
  transform: translate(-50%,0);
}

.shop-rune-purchase-toast strong {
  color: #f0dfb1;
  font-size: 13px;
}

.shop-rune-purchase-toast span {
  color: #9fb4a5;
  font-size: 10px;
}

@media (max-width:430px) {
  .shop-rune-day-heading {
    align-items: center;
  }
}

@media (max-width:430px) {
  .shop-rune-day-heading span {
    font-size: 10px;
  }
}

@media (max-width:430px) {
  .shop-rune-day-grid .item-surface-card {
    grid-template-columns: 54px minmax(0,1fr) 102px;
  }
}

@media (max-width:430px) {
  .shop-rune-day-grid .item-surface-icon {
    width: 54px;
    height: 54px;
  }
}

@media (max-width:430px) {
  .shop-rune-day-grid .item-surface-name {
    font-size: 16px;
  }
}

@media (max-width:430px) {
  .shop-rune-day-grid .rune-day-note {
    display: none;
  }
}

@media (max-width:370px) {
  .shop-rune-day-grid .item-surface-card {
    grid-template-columns: 50px minmax(0,1fr);
  }
}

@media (max-width:370px) {
  .shop-rune-day-grid .item-surface-side {
    grid-column: 1/-1;
  }
}

@media (max-width:370px) {
  .shop-rune-day-grid .item-surface-side button {
    width: 100%;
  }
}

@media (prefers-reduced-motion:reduce) {
  .rune-day-card.rune-purchase-success,
  .shop-rune-flyer,
  .shop-rune-nav-plus {
    animation: none !important;
  }
}

@media (prefers-reduced-motion:reduce) {
  .shop-rune-flyer {
    display: none;
  }
}

@media (prefers-reduced-motion:reduce) {
  .shop-rune-purchase-toast {
    transition: none;
  }
}

/* Source replay: css/v0.10.0-rc36.css */

@media (max-width:390px) {
  body.theme-ashen .shop-screen-panel {
    padding: 10px !important;
  }
}

@media (max-width:390px) {
  body.theme-ashen .shop-refresh-panel.compact {
    padding: 9px !important;
    margin-bottom: 8px !important;
  }
}

@media (max-width:390px) {
  body.theme-ashen .shop-refresh-panel.compact button {
    min-height: 44px !important;
  }
}

@media (max-width:390px) {
  body.theme-ashen .shop-showcase-rare-grid {
    gap: 8px !important;
  }
}

@media (max-width:390px) {
  body.theme-ashen .shop-rune-day-block {
    margin-top: 9px !important;
    padding: 9px !important;
    gap: 8px !important;
  }
}

body.theme-ashen .shop-tutorial-card {
  width: min(560px,100%) !important;
}

/* Source replay: css/v0.10.0-rc37.css */

body.theme-ashen .shop-section-tabs {
  gap: max(3px,calc(var(--ff-section-gap) - 4px)) !important;
  margin-bottom: calc(var(--ff-section-gap) + 1px) !important;
  padding: max(3px,calc(var(--ff-section-gap) - 4px)) !important;
  border-radius: var(--ff-panel-radius) !important;
}

body.theme-ashen .shop-section-tab {
  min-height: var(--ff-tab-height) !important;
  padding: 6px 5px !important;
}

body.theme-ashen .shop-grid {
  gap: var(--ff-card-gap) !important;
}

body.theme-ashen .shop-grid {
  row-gap: var(--ff-card-gap) !important;
}

body.theme-ashen .shop-refresh-panel,
body.theme-ashen .shop-rune-day-block,
body.theme-ashen .shop-showcase-card {
  padding: var(--ff-card-padding) !important;
}

/* Source replay: css/v0.10.0-rc47.css */

body.theme-ashen .shop-content-heading {
  display: none !important;
}

body.theme-ashen .shop-screen-panel {
  padding: 10px !important;
  overflow-x: hidden !important;
}

body.theme-ashen .shop-grid {
  gap: 8px !important;
  row-gap: 8px !important;
  padding-bottom: calc(var(--ff-bottom-nav-rendered-height) + 22px) !important;
}

body.theme-ashen .shop-refresh-panel.compact {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) auto !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 8px !important;
  padding: 8px 9px !important;
}

body.theme-ashen .shop-refresh-panel.compact>div:first-child {
  display: grid !important;
  gap: 1px !important;
  min-width: 0 !important;
}

body.theme-ashen .shop-refresh-panel.compact strong {
  font-size: 12px !important;
  line-height: 1.15 !important;
}

body.theme-ashen .shop-refresh-panel.compact span {
  font-size: 9px !important;
  line-height: 1.25 !important;
}

body.theme-ashen .shop-refresh-panel.compact .shop-refresh-actions {
  min-width: 0 !important;
}

body.theme-ashen .shop-refresh-panel.compact button {
  width: auto !important;
  min-width: 132px !important;
  min-height: 44px !important;
  padding: 7px 10px !important;
  white-space: normal !important;
}

body.theme-ashen .shop-showcase-rare-grid {
  gap: 8px !important;
}

body.theme-ashen .item-surface-card.shop {
  grid-template-columns: 56px minmax(0,1fr) 116px !important;
  gap: 8px !important;
  padding: 9px !important;
}

body.theme-ashen .item-surface-card.shop .item-surface-icon {
  width: 56px !important;
  height: 56px !important;
}

body.theme-ashen .item-surface-card.shop .item-surface-eyebrow {
  font-size: 9px !important;
  line-height: 1.15 !important;
}

body.theme-ashen .item-surface-card.shop .item-surface-name {
  font-size: 18px !important;
  line-height: 1.08 !important;
}

body.theme-ashen .item-surface-card.shop .item-surface-meta,
body.theme-ashen .item-surface-card.shop .item-surface-stat {
  font-size: 10.5px !important;
  line-height: 1.2 !important;
}

body.theme-ashen .item-surface-card.shop .item-surface-side {
  min-width: 0 !important;
  gap: 5px !important;
}

body.theme-ashen .item-surface-card.shop .item-surface-side .compact-button {
  width: 100% !important;
  min-height: 44px !important;
  padding: 7px 8px !important;
}

body.theme-ashen .shop-rune-day-block {
  gap: 7px !important;
  margin-top: 8px !important;
  padding: 8px !important;
}

body.theme-ashen .shop-rune-day-heading {
  align-items: center !important;
  gap: 8px !important;
  padding: 0 1px !important;
}

body.theme-ashen .shop-rune-day-heading>div {
  gap: 1px !important;
}

body.theme-ashen .shop-rune-day-heading strong {
  font-size: 14px !important;
}

body.theme-ashen .shop-rune-day-heading span {
  font-size: 9.5px !important;
  line-height: 1.2 !important;
}

body.theme-ashen .shop-rune-day-heading>b {
  padding: 5px 7px !important;
  font-size: 10px !important;
}

body.theme-ashen .shop-rune-day-grid {
  gap: 7px !important;
}

body.theme-ashen .shop-rune-day-grid .rune-day-card {
  grid-template-columns: 50px minmax(0,1fr) 116px !important;
  gap: 8px !important;
  padding: 8px !important;
}

body.theme-ashen .shop-rune-day-grid .item-surface-icon {
  width: 50px !important;
  height: 50px !important;
}

body.theme-ashen .shop-rune-day-grid .item-surface-name {
  font-size: 16px !important;
}

body.theme-ashen .shop-rune-day-grid .item-surface-side {
  min-width: 0 !important;
}

body.theme-ashen .shop-rune-day-grid .item-surface-side button {
  width: 100% !important;
  min-height: 42px !important;
  padding: 6px !important;
}

@media (max-width:380px) {
  body.theme-ashen .shop-refresh-panel.compact {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width:380px) {
  body.theme-ashen .shop-refresh-panel.compact button {
    width: 100% !important;
  }
}

@media (max-width:380px) {
  body.theme-ashen .item-surface-card.shop,
  body.theme-ashen .shop-rune-day-grid .rune-day-card {
    grid-template-columns: 50px minmax(0,1fr) !important;
  }
}

@media (max-width:380px) {
  body.theme-ashen .item-surface-card.shop .item-surface-side,
  body.theme-ashen .shop-rune-day-grid .item-surface-side {
    grid-column: 1/-1 !important;
    display: grid !important;
    grid-template-columns: minmax(0,1fr) auto !important;
    align-items: center !important;
  }
}

body.theme-ashen .shop-grid {
  gap: 5px !important;
  row-gap: 5px !important;
}

body.theme-ashen .shop-refresh-panel.compact {
  grid-template-columns: minmax(0,1fr) auto !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 7px 8px !important;
}

body.theme-ashen .shop-refresh-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 5px !important;
  flex-wrap: nowrap !important;
}

body.theme-ashen .shop-refresh-badge {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 22px !important;
  padding: 3px 6px !important;
  border: 1px solid rgba(113,190,167,.42) !important;
  border-radius: 999px !important;
  color: #9ddbc8 !important;
  background: rgba(20,78,67,.28) !important;
  font-size: 8.5px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body.theme-ashen .shop-refresh-panel.compact button {
  min-width: 102px !important;
  min-height: 40px !important;
  padding: 5px 9px !important;
  border-radius: 10px !important;
  box-shadow: inset 0 1px rgba(255,255,255,.22),0 4px 10px rgba(0,0,0,.22) !important;
  white-space: nowrap !important;
}

body.theme-ashen .shop-showcase-rare-grid {
  gap: 5px !important;
}

body.theme-ashen .item-surface-card.shop {
  padding: 8px !important;
}

body.theme-ashen .item-surface-card.shop .item-surface-side .compact-button {
  min-height: 40px !important;
  padding: 5px 7px !important;
  border-radius: 10px !important;
  box-shadow: inset 0 1px rgba(255,255,255,.2),0 4px 10px rgba(0,0,0,.2) !important;
}

body.theme-ashen .shop-rune-day-block {
  gap: 6px !important;
  margin-top: 0 !important;
  padding: 7px !important;
}

body.theme-ashen .shop-rune-day-grid {
  gap: 5px !important;
}

body.theme-ashen .shop-rune-day-grid .rune-day-card {
  padding: 7px !important;
}

body.theme-ashen .shop-rune-day-grid .item-surface-side button {
  min-height: 40px !important;
  padding: 5px 6px !important;
  border-radius: 10px !important;
  box-shadow: inset 0 1px rgba(255,255,255,.2),0 4px 10px rgba(0,0,0,.2) !important;
}

@media (max-width:380px) {
  body.theme-ashen .shop-refresh-panel.compact {
    grid-template-columns: minmax(0,1fr) auto !important;
  }
}

@media (max-width:380px) {
  body.theme-ashen .shop-refresh-panel.compact button {
    width: auto !important;
    min-width: 100px !important;
  }
}

@media (max-width:380px) {
  body.theme-ashen .shop-refresh-badge {
    display: none !important;
  }
}

/* Source replay: css/v0.10.0-rc31.css */
/* Domain animation definitions */

@keyframes rc30RuneCardSuccess {
  0% {
    box-shadow: inset 0 1px rgba(255,255,255,.035),0 8px 20px rgba(0,0,0,.18);
  }
  35% {
    border-color: rgba(225,196,112,.92);
    box-shadow: inset 0 0 28px rgba(215,185,96,.22),0 0 22px rgba(215,185,96,.24);
  }
  100% {
    box-shadow: inset 0 1px rgba(255,255,255,.035),0 8px 20px rgba(0,0,0,.18);
  }
}

@keyframes rc30RuneFly {
  0% {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate(calc(-50% + var(--rune-fly-x)),calc(-50% + var(--rune-fly-y))) scale(.72);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--rune-fly-x)),calc(-50% + var(--rune-fly-y))) scale(.35);
  }
}

@keyframes rc30RunePlus {
  0% {
    opacity: 0;
    transform: translate(-50%,8px) scale(.7);
  }
  25% {
    opacity: 1;
    transform: translate(-50%,0) scale(1);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%,-12px) scale(.9);
  }
}

/* Consolidated from 17 active historical files: 507 rules, 551 selectors. */