/* =========================
   Uremono TOP / page base
========================= */

.uremono-top-page,
.uremono-top-page *,
.uremono-top-page *::before,
.uremono-top-page *::after,
.uremono-genre-index-page,
.uremono-genre-index-page *,
.uremono-genre-index-page *::before,
.uremono-genre-index-page *::after,
.uremono-genre-card-grid,
.uremono-genre-card-grid *,
.uremono-genre-card-grid *::before,
.uremono-genre-card-grid *::after {
  box-sizing: border-box;
}

.uremono-top-page,
.uremono-genre-index-page {
  color: #111827;
}

.uremono-top-page h2,
.uremono-genre-index-page h2 {
  margin: 34px 0 16px;
  padding-bottom: 8px;
  border-bottom: 4px solid #58738f;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.uremono-page-hero {
  padding: 34px 0 24px;
  text-align: center;
}

.uremono-page-hero h1 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.uremono-page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #344054;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.85;
}

/* =========================
   Uremono TOP Header Brand
========================= */

.uremono-site-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0 12px;
}

.uremono-site-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f4bb8;
  text-decoration: none;
}

.uremono-site-brand-link:hover {
  text-decoration: none;
  opacity: 0.86;
}

.uremono-site-logo {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.uremono-site-logo-svg {
  width: 30px;
  height: 30px;
  display: block;
}

.uremono-site-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.uremono-site-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #344054;
  line-height: 1.5;
  white-space: nowrap;
}

/* =========================
   Uremono TOP Hero
========================= */

.uremono-top-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.35fr);
  align-items: center;
  gap: 36px;
  padding: 32px 0 42px;
  border-bottom: 1px solid #e5e7eb;
}

.uremono-top-hero-text h1 {
  margin: 0 0 22px;
  color: #111827;
  font-size: 34px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0;
}

.uremono-top-hero-text h1 span {
  color: #0f4bb8;
}

.uremono-top-hero-text p {
  margin: 0 0 22px;
  color: #344054;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.uremono-top-updated {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.uremono-top-hero-image {
  min-width: 0;
}

.uremono-top-hero-image img {
  width: 100%;
  height: clamp(220px, 26vw, 300px);
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* =========================
   Uremono shared genre cards
========================= */

.uremono-genre-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 16px 0 36px;
}

.uremono-top-page .uremono-genre-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 12px;
  margin: 14px 0 34px;
}

.uremono-genre-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.uremono-genre-card:hover {
  border-color: #b9ccff;
  box-shadow: 0 8px 20px rgba(31, 79, 178, 0.10);
  text-decoration: none;
  transform: translateY(-1px);
}

.uremono-genre-card-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #eef4ff;
  color: #1f4fb2;
}

.uremono-genre-card-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.uremono-genre-card-body {
  min-width: 0;
  display: block;
}

.uremono-genre-card-name {
  display: block;
  color: #0f4bb8;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.uremono-genre-card-desc {
  display: block;
  margin-top: 5px;
  color: #1f4fb2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

/* =========================
   Uremono TOP more links
========================= */

.uremono-top-more-link {
  margin: -42px 0 14px;
  text-align: right;
}

.uremono-top-more-link a,
.uremono-top-highlight-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0f4bb8;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.uremono-top-more-link a:hover,
.uremono-top-highlight-more:hover {
  color: #0b3d94;
  text-decoration: none;
}

/* =========================
   Uremono TOP highlights
========================= */

.uremono-top-highlights {
  margin: 10px 0 36px;
}

.uremono-top-highlight-section {
  margin: 26px 0 34px;
}

.uremono-top-highlight-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px;
}

.uremono-top-highlight-title {
  margin: 0;
  padding: 7px 10px;
  border-left: 5px solid currentColor;
  background: #f5f7fa;
  color: #ef3340;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}

.uremono-top-highlight-section--stable .uremono-top-highlight-title {
  color: #f59e0b;
}

.uremono-top-highlight-section--price_down .uremono-top-highlight-title {
  color: #16a34a;
}

.uremono-top-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.uremono-top-item-card {
  display: grid;
  grid-template-rows: 128px minmax(136px, auto);
  min-width: 0;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border-right: 1px solid #e5e7eb;
}

.uremono-top-item-card:last-child {
  border-right: 0;
}

.uremono-top-item-card:hover {
  text-decoration: none;
  background: #fbfdff;
}

.uremono-top-item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 14px 4px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.uremono-top-item-media img {
  max-width: 100%;
  max-height: 110px;
  display: block;
  object-fit: contain;
}

.uremono-top-item-image-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: #e5e7eb;
}

.uremono-top-item-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 10px 18px 16px;
}

.uremono-top-item-genre {
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1f4fb2;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.uremono-top-item-name {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.uremono-top-item-price {
  margin-top: 8px;
  color: #ef3340;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.uremono-top-item-meta {
  margin-top: 4px;
  color: #475467;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

/* =========================
   Uremono genre link list
========================= */

.uremono-genre-link-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 36px;
  margin: 18px 0 40px;
}

.uremono-genre-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 10px 0;
  color: #344054;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.uremono-genre-link-list a:hover {
  color: #0f4bb8;
  text-decoration: none;
  border-bottom-color: #dbe7ff;
}

.uremono-genre-link-list a span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.uremono-empty-message {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f8fafc;
  color: #667085;
  font-size: 14px;
}

@media (max-width: 980px) {
  .uremono-top-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uremono-top-item-card:nth-child(2n) {
    border-right: 0;
  }

  .uremono-top-item-card:nth-child(n + 3) {
    border-top: 1px solid #e5e7eb;
  }

  .uremono-genre-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }
}

@media (max-width: 768px) {
  .uremono-site-brand {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }

  .uremono-site-title {
    font-size: 24px;
  }

  .uremono-site-tagline {
    font-size: 13px;
    white-space: normal;
  }

  .uremono-top-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0 32px;
  }

  .uremono-top-hero-text h1 {
    font-size: 26px;
  }

  .uremono-top-hero-text p {
    font-size: 15px;
  }

  .uremono-top-hero-image img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .uremono-page-hero {
    padding: 24px 0 18px;
    text-align: left;
  }

  .uremono-page-hero h1 {
    font-size: 28px;
  }

  .uremono-page-hero p {
    font-size: 15px;
  }

  .uremono-top-more-link {
    margin: -6px 0 12px;
    text-align: left;
  }

  .uremono-genre-card-grid,
  .uremono-top-page .uremono-genre-card-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .uremono-genre-card {
    min-height: 78px;
    padding: 14px 16px;
  }

  .uremono-genre-card-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .uremono-genre-card-icon svg {
    width: 30px;
    height: 30px;
  }

  .uremono-top-highlight-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .uremono-top-highlight-grid {
    grid-template-columns: 1fr;
  }

  .uremono-top-item-card,
  .uremono-top-item-card:nth-child(2n) {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 136px;
    border-right: 0;
    border-top: 1px solid #e5e7eb;
  }

  .uremono-top-item-card:first-child {
    border-top: 0;
  }

  .uremono-top-item-media {
    padding: 12px;
  }

  .uremono-top-item-media img {
    max-height: 92px;
  }

  .uremono-top-item-body {
    padding: 14px 14px 14px 0;
  }

  .uremono-genre-link-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Uremono TOP/genre highlights v2 */
.uremono-genre-highlights,
.uremono-top-highlights {
  margin: 10px 0 36px;
}

.uremono-top-highlight-description {
  margin: -4px 0 12px !important;
  color: #475467;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.uremono-top-highlight-section--latest_top .uremono-top-highlight-title {
  color: #ef3340;
}

.uremono-top-highlight-section--stable_popular .uremono-top-highlight-title,
.uremono-top-highlight-section--stable .uremono-top-highlight-title {
  color: #f59e0b;
}

.uremono-top-highlight-section--rising .uremono-top-highlight-title,
.uremono-top-highlight-section--rank_up .uremono-top-highlight-title {
  color: #0f4bb8;
}

.uremono-top-highlight-section--review_growth .uremono-top-highlight-title {
  color: #7c3aed;
}

.uremono-top-highlight-section--price_movement .uremono-top-highlight-title,
.uremono-top-highlight-section--price_down .uremono-top-highlight-title {
  color: #16a34a;
}

.uremono-top-highlight-section--new_entries .uremono-top-highlight-title {
  color: #db2777;
}

@media (min-width: 981px) {
  .uremono-top-highlight-grid .uremono-top-item-card:nth-child(n + 5) {
    border-top: 1px solid #e5e7eb;
  }

  .uremono-top-highlight-grid .uremono-top-item-card:nth-child(4n) {
    border-right: 0;
  }
}

/* =========================
   Uremono trend products
========================= */

.uremono-trend-products,
.uremono-trend-products * {
  box-sizing: border-box;
}

.uremono-trend-section {
  margin: 20px 0 40px;
  color: #111827;
}

.uremono-trend-header {
  margin: 0 0 18px;
}

.uremono-trend-title {
  margin: 0 0 8px !important;
  color: #0f4bb8;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}

.uremono-trend-description {
  max-width: 760px;
  margin: 0 !important;
  color: #475467;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.uremono-trend-list {
  display: grid;
  gap: 0;
  margin: 0 0 18px !important;
  padding: 0 !important;
  list-style: none;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.uremono-trend-item {
  display: grid;
  grid-template-columns: 46px 112px minmax(0, 1fr) minmax(156px, auto);
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 132px;
  padding: 18px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.uremono-trend-item:last-child {
  border-bottom: 0;
}

.uremono-trend-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1f4fb2;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.uremono-trend-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 96px;
  background: #f8fafc;
}

.uremono-trend-media img {
  max-width: 100%;
  max-height: 92px;
  display: block;
  object-fit: contain;
}

.uremono-trend-image-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #e5e7eb;
}

.uremono-trend-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.uremono-trend-genre {
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1f4fb2;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.uremono-trend-name,
.uremono-trend-name a {
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.uremono-trend-name a:hover {
  color: #0f4bb8;
  text-decoration: none;
}

.uremono-trend-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.uremono-trend-price {
  color: #ef3340;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.uremono-trend-current-rank,
.uremono-trend-meta {
  color: #475467;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.uremono-trend-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.uremono-trend-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #c7d7fe;
  border-radius: 6px;
  background: #fff;
  color: #0f4bb8;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.uremono-trend-button:hover {
  border-color: #0f4bb8;
  color: #0b3d94;
  text-decoration: none;
}

.uremono-trend-button--rakuten {
  border-color: #ef3340;
  background: #ef3340;
  color: #fff;
}

.uremono-trend-button--rakuten:hover {
  border-color: #d92d20;
  background: #d92d20;
  color: #fff;
}

.uremono-trend-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 18px 0;
}

.uremono-trend-pagination a,
.uremono-trend-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.uremono-trend-pagination a:hover,
.uremono-trend-pagination .is-current {
  border-color: #0f4bb8;
  background: #eef4ff;
  color: #0f4bb8;
  text-decoration: none;
}

.uremono-trend-note,
.uremono-trend-empty {
  margin: 18px 0 0 !important;
  color: #667085;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

/* /trends/new-items only: responsive card grid */
.uremono-trend-section--new_items .uremono-trend-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.uremono-trend-section--new_items .uremono-trend-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-height: 0;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.uremono-trend-section--new_items .uremono-trend-item:last-child {
  border-bottom: 1px solid #e5e7eb;
}

.uremono-trend-section--new_items .uremono-trend-rank {
  display: none;
}

.uremono-trend-section--new_items .uremono-trend-media {
  width: 100%;
  height: 120px;
  background: #f8fafc;
  border-radius: 8px;
  overflow: hidden;
}

.uremono-trend-section--new_items .uremono-trend-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.uremono-trend-section--new_items .uremono-trend-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.uremono-trend-section--new_items .uremono-trend-genre {
  font-size: 10px;
  line-height: 1.4;
}

.uremono-trend-section--new_items .uremono-trend-name,
.uremono-trend-section--new_items .uremono-trend-name a {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.uremono-trend-section--new_items .uremono-trend-summary {
  font-size: 12px;
  line-height: 1.5;
}

.uremono-trend-section--new_items .uremono-trend-price {
  font-size: 15px;
  line-height: 1.4;
}

.uremono-trend-section--new_items .uremono-trend-current-rank,
.uremono-trend-section--new_items .uremono-trend-meta {
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .uremono-trend-section--new_items .uremono-trend-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .uremono-trend-section--new_items .uremono-trend-item {
    padding: 10px;
  }

  .uremono-trend-section--new_items .uremono-trend-media {
    height: 100px;
  }
}
@media (max-width: 860px) {
  .uremono-trend-item {
    grid-template-columns: 38px 92px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .uremono-trend-media {
    width: 92px;
    height: 86px;
  }

  .uremono-trend-media img {
    max-height: 82px;
  }

  .uremono-trend-actions {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .uremono-trend-title {
    font-size: 21px;
  }

  .uremono-trend-item {
    grid-template-columns: 34px 78px minmax(0, 1fr);
    gap: 10px;
    min-height: 116px;
    padding: 12px;
  }

  .uremono-trend-rank {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .uremono-trend-media {
    width: 78px;
    height: 76px;
  }

  .uremono-trend-media img {
    max-height: 72px;
  }

  .uremono-trend-name,
  .uremono-trend-name a {
    font-size: 13px;
  }

  .uremono-trend-price {
    font-size: 16px;
  }

  .uremono-trend-actions {
    grid-column: 1 / -1;
  }
}

/* Uremono TOP summary and usage cards */
.uremono-top-data-summary { margin: 28px 0 38px; }
.uremono-top-data-summary-header { margin-bottom: 14px; }
.uremono-top-data-summary-title { margin: 0 0 10px !important; padding-bottom: 8px; border-bottom: 4px solid #58738f; color: #111827; font-size: 22px; font-weight: 800; }
.uremono-top-data-summary-description { margin: 0 !important; color: #475467; font-size: 14px; line-height: 1.75; }
.uremono-top-data-summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.uremono-top-data-summary-card { display: flex; min-height: 128px; flex-direction: column; justify-content: space-between; gap: 12px; padding: 16px; border: 1px solid #e5e7eb; border-radius: 8px; background: #fff; color: #111827; box-shadow: 0 2px 8px rgba(15,23,42,.04); }
.uremono-top-data-summary-card--linked { text-decoration: none; transition: border-color .16s, box-shadow .16s, transform .16s; }
.uremono-top-data-summary-card--linked:hover { border-color: #b9ccff; box-shadow: 0 8px 20px rgba(31,79,178,.10); color: #0f4bb8; text-decoration: none; transform: translateY(-1px); }
.uremono-top-data-summary-label { color: #344054; font-size: 13px; font-weight: 800; }
.uremono-top-data-summary-value { color: #0f4bb8; font-size: 30px; font-weight: 900; }
.uremono-top-data-summary-unit { margin-left: 3px; color: #475467; font-size: 13px; }
.uremono-top-data-summary-note { margin-top: -8px; color: #667085; font-size: 11px; font-weight: 700; line-height: 1.5; }
.uremono-top-data-summary-subvalues { display: grid; gap: 8px; }
.uremono-top-data-summary-subvalue { display: flex; justify-content: space-between; gap: 8px; color: #0f4bb8; font-size: 20px; font-weight: 900; }
.uremono-top-data-summary-subvalue b { color: #475467; font-size: 12px; }
.uremono-top-data-summary-date { margin: 12px 0 0 !important; color: #667085; font-size: 12px; }
.uremono-top-usage { margin: 28px 0 38px; }
.uremono-top-usage-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 14px; }
.uremono-top-usage-card { display: flex; min-height: 190px; flex-direction: column; gap: 10px; padding: 20px; border: 1px solid #e5e7eb; border-radius: 8px; background: #fff; }
.uremono-top-usage-icon { color: #0f4bb8; font-size: 24px; }.uremono-top-usage-title { margin: 0 !important; color: #111827; font-size: 16px; }.uremono-top-usage-text { margin: 0 !important; color: #475467; font-size: 13px; line-height: 1.75; }.uremono-top-usage-link { margin-top: auto; color: #0f4bb8; font-size: 13px; font-weight: 800; text-decoration: none; }
@media (max-width: 768px) { .uremono-top-data-summary-grid,.uremono-top-usage-grid { grid-template-columns: 1fr; } }

/* Fixed-page usage card class aliases */
.uremono-top-usage-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.uremono-top-usage-label { margin: 0 !important; color: #111827; font-size: 16px; font-weight: 800; line-height: 1.5; }
.uremono-top-usage-more { margin-top: auto; color: #0f4bb8; font-size: 13px; font-weight: 800; text-decoration: none; }
.uremono-top-data-summary-date { text-align: right; }
@media (max-width: 768px) { .uremono-top-usage-card-grid { grid-template-columns: 1fr; } }

/* Usage card icon badge */
.uremono-top-usage-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef4ff;
  color: #2454c6;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.uremono-top-usage-icon svg {
  width: 22px;
  height: 22px;
}

/* Trend pages: common navigation, metadata, and analytical metrics */
.uremono-trend-nav { display:flex; flex-wrap:wrap; gap:8px; margin:0 0 14px; }
.uremono-trend-nav p { width:100%; margin:0 0 2px; font-weight:800; }
.uremono-trend-nav a { padding:7px 10px; border:1px solid #c7d7fe; border-radius:999px; color:#0f4bb8; font-size:12px; font-weight:800; text-decoration:none; }
.uremono-trend-nav a[aria-current="page"] { background:#0f4bb8; color:#fff; }
.uremono-trend-page-meta { display:flex; flex-wrap:wrap; gap:6px 14px; margin:0 0 12px; color:#475467; font-size:12px; font-weight:700; }
.uremono-trend-count-note { margin:0 0 12px !important; color:#475467; font-size:12px; font-weight:700; line-height:1.6; }
.uremono-trend-method { margin:0 0 18px; padding:10px 12px; border:1px solid #e5e7eb; border-radius:8px; color:#475467; font-size:13px; }
.uremono-trend-method summary { cursor:pointer; color:#344054; font-weight:800; }
.uremono-trend-method ul { margin:8px 0 0; padding-left:1.25em; }
.uremono-trend-item { grid-template-columns:46px 112px minmax(0,1fr) minmax(150px, .8fr) minmax(128px,auto); min-height:120px; padding:14px 18px; }
.uremono-trend-media-link { display:flex; width:100%; height:100%; align-items:center; justify-content:center; }
.uremono-trend-metric { display:flex; min-width:0; flex-direction:column; gap:3px; padding-left:14px; border-left:1px solid #e5e7eb; }
.uremono-trend-metric-label,.uremono-trend-metric-sub,.uremono-trend-metric-details { color:#475467; font-size:12px; font-weight:700; line-height:1.45; }
.uremono-trend-metric-value { color:#0f4bb8; font-size:24px; font-weight:900; line-height:1.2; }
.uremono-trend-section--price_down .uremono-trend-metric-value { color:#dc2626; }
@media (max-width:860px) { .uremono-trend-item { grid-template-columns:38px 92px minmax(0,1fr); } .uremono-trend-metric { grid-column:2 / -1; padding:8px 0 0; border-top:1px solid #e5e7eb; border-left:0; } }
@media (max-width:560px) { .uremono-trend-item { grid-template-columns:34px 78px minmax(0,1fr); } .uremono-trend-metric { grid-column:1 / -1; } .uremono-trend-metric-value { font-size:22px; } .uremono-trend-page-meta { display:grid; gap:5px; } }
.uremono-trend-section--new_items .uremono-trend-metric { display:none; }

.uremono-trend-back-link { margin: 0 0 14px !important; }
.uremono-trend-back-link a { color: #0f4bb8; font-size: 13px; font-weight: 800; text-decoration: none; }
.uremono-trend-back-link a:hover { text-decoration: underline; }
.uremono-trend-products--genre .uremono-trend-genre { display: none; }
