:root {
  --bg: #f3f6fa;
  --surface: #ffffff;
  --ink: #182230;
  --muted: #6b7788;
  --line: #dce3ec;
  --accent: #4f86ad;
  --accent-2: #5da7a5;
  --warn: #b45309;
  --good: #0f8f75;
  --shadow: 0 16px 38px rgba(30, 52, 76, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(124, 151, 177, 0.16), transparent 34rem),
    linear-gradient(135deg, #f8fafc 0%, var(--bg) 50%, #eef3f7 100%);
}

button, input, textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

select {
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

#app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 272px 1fr;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  background: linear-gradient(180deg, #1e3448 0%, #1b3146 48%, #142638 100%);
  color: #eef8ff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-avatar {
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center 32%;
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.brand strong, .brand span {
  display: block;
}

.brand span {
  color: #9fc8de;
  font-size: 12px;
  margin-top: 3px;
}

.nav {
  display: grid;
  gap: 8px;
}

.nav-item {
  height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  color: #cde4f1;
  background: transparent;
  text-align: left;
}

.nav-item.active, .nav-item:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.status-card {
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(175, 219, 241, 0.2);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.status-card span, .status-card small {
  color: #b9d6e6;
}

.main {
  min-width: 0;
  padding: 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

h1, h2, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 6px;
  font-size: 28px;
}

h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.topbar p, .panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.account {
  display: flex;
  align-items: center;
  gap: 10px;
}

.points {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}

.primary, .ghost {
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 22px rgba(63, 127, 168, 0.18);
}

.primary.small {
  height: 36px;
}

.ghost {
  border: 1px solid var(--line);
  background: var(--surface);
  color: #24617f;
}

.product-back-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  height: 50px;
  padding: 0 22px 0 12px;
  border: 1px solid rgba(71, 129, 158, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #4f93b8 0%, #376b90 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(55, 107, 144, 0.22);
}

.product-back-button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 18px;
  line-height: 1;
}

.product-back-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #5aa1c5 0%, #40779d 100%);
  box-shadow: 0 18px 36px rgba(55, 107, 144, 0.28);
}

.product-back-button:focus-visible {
  outline: 3px solid rgba(79, 147, 184, 0.28);
  outline-offset: 3px;
}

.full {
  width: 100%;
}

.notice {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid #d4e1ec;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #365e78;
  margin-bottom: 20px;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.tabs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.tab {
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid #c9d3df;
  border-radius: 999px;
  background: #ffffff;
  color: #7d8b99;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  box-shadow: none;
}

.tab.active {
  border-color: #5a8fb4;
  background: #5a8fb4;
  color: white;
}

.tab:first-child {
  padding: 0 18px;
  background: #9aa8b5;
  border-color: #9aa8b5;
  color: #ffffff;
}

.tab:first-child.active {
  background: #5a8fb4;
  border-color: #5a8fb4;
}

.category-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #f2f6fb;
  color: #222f3d;
  font-size: 14px;
  font-weight: 800;
}

.category-icon.blue {
  background: #eaf5ff;
  color: #2f80ed;
}

.category-icon.chatgpt {
  background: transparent;
  color: #ffffff;
  padding: 0;
}

.category-icon img,
.category-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.category-icon.gemini {
  background: #eef2ff;
  color: #5d6bf3;
}

.category-icon.black {
  background: #0f172a;
  color: #ffffff;
}

.category-icon.orange {
  background: #fff1e9;
  color: #d97757;
}

.category-icon.apple {
  background: #f2f4f7;
  color: #111827;
}

.tab.active .category-icon {
  background: rgba(255, 255, 255, 0.96);
  color: #4f86ad;
}

.sort-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.sort-tab {
  height: 48px;
  padding: 0 18px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  background: #ffffff;
  color: #7d8b99;
  font-size: 17px;
}

.sort-tab.active {
  border-color: #5a8fb4;
  background: #5a8fb4;
  color: #ffffff;
}

input, textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

input {
  height: 40px;
  padding: 0 12px;
}

textarea {
  width: 100%;
  min-height: 130px;
  padding: 12px;
  resize: vertical;
  margin-bottom: 12px;
}

#search {
  width: min(320px, 100%);
}

.product-grid, .tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card, .tool-card, .panel, .table-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover, .tool-card:hover {
  transform: translateY(-2px);
  border-color: #c7d7e4;
  box-shadow: 0 18px 44px rgba(30, 52, 76, 0.12);
}

.product-card, .tool-card {
  padding: 0;
  overflow: hidden;
}

.product-card {
  cursor: pointer;
}

.product-card:focus-visible {
  outline: 3px solid rgba(90, 143, 180, 0.34);
  outline-offset: 3px;
}

.tool-card {
  padding: 16px;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 24px;
  border: 1px dashed #b6d6e8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  text-align: center;
}

.empty-state strong, .empty-state span {
  display: block;
}

.empty-state strong {
  color: var(--ink);
}

.product-image {
  height: 178px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border-bottom: 1px solid #edf2f7;
}

.product-image img,
.product-image svg {
  width: min(72%, 260px);
  height: 132px;
  object-fit: contain;
}

.product-image svg[viewBox="0 0 64 64"] {
  width: 100%;
  height: 100%;
}

.product-tags {
  display: flex;
  gap: 8px;
  min-height: 32px;
  align-items: center;
  padding: 10px 16px 0;
}

.tag {
  align-self: start;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e1f6ec;
  color: #079064;
  font-size: 13px;
}

.tag.recommend {
  background: #e8f0ff;
  color: #1677ff;
}

.product-card h2 {
  min-height: 58px;
  padding: 8px 16px 0;
  margin: 0;
  color: #1f2a37;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 18px;
  line-height: 1.45;
}

.product-card p, .tool-card p {
  color: var(--muted);
  line-height: 1.55;
  min-height: 48px;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 18px;
  margin-top: 0;
}

.price {
  color: #078866;
  font-size: 28px;
  font-weight: 800;
}

.stock {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.catalog-note {
  margin: 0 16px 16px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f1f6f8;
  color: #4c7188;
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
}

.product-detail-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: stretch;
  min-height: 560px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-detail-visual {
  display: grid;
  place-items: center;
  min-height: 490px;
  border: 1px solid #e7edf3;
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfdff 0%, #f2f7fa 100%);
}

.product-detail-visual img,
.product-detail-visual svg {
  width: min(78%, 360px);
  max-height: 360px;
  object-fit: contain;
}

.product-detail-visual svg[viewBox="0 0 64 64"] {
  width: min(82%, 390px);
  height: min(82%, 390px);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.detail-category {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef5f7;
  color: #4c7188;
  font-size: 16px;
  font-weight: 700;
}

.product-detail-info h2 {
  margin: 22px 0 0;
  color: #1f2a37;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 38px;
  line-height: 1.28;
  letter-spacing: 0;
}

.detail-price {
  margin-top: 28px;
  color: #078866;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  color: #68798d;
  font-size: 18px;
}

.detail-note {
  width: fit-content;
  margin-top: 30px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #eef7f4;
  color: #087b60;
  font-size: 22px;
  font-weight: 800;
}

.product-detail-info p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.sold {
  align-self: end;
  color: #68798d;
  font-size: 13px;
  white-space: nowrap;
}

.panel, .table-card {
  padding: 18px;
}

.panel-head, .lookup, .copy-row {
  display: flex;
  gap: 10px;
}

.panel-head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.lookup input, .copy-row input {
  flex: 1;
}

.button-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stacked-form {
  align-items: stretch;
  margin-top: 12px;
}

.recharge-form-panel {
  margin-top: 22px;
}

.stacked-form select {
  min-width: 132px;
}

.result {
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fbfcfd;
}

.result.empty {
  color: var(--muted);
}

.result pre {
  overflow: auto;
  margin: 10px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #111827;
  color: #e5e7eb;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.table-card {
  margin-top: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

th {
  color: var(--muted);
  font-weight: 600;
}

.two-col, .admin-grid, .api-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.redeem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.redeem-card {
  min-height: 152px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid #33445c;
  border-radius: 16px;
  background: #202d40;
  color: #edf4fb;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.redeem-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
}

.redeem-icon img,
.redeem-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gemini-card-icon img {
  width: 88%;
  height: 88%;
}

.chatgpt-card-icon {
  background: #ffffff;
}

.redeem-card h2 {
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 22px;
}

.redeem-card p {
  margin: 0 0 12px;
  color: #77889d;
  font-size: 16px;
}

.redeem-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 32px;
  padding: 0 16px;
  border: 1px solid #1a9078;
  border-radius: 999px;
  color: #44e0bd;
  background: rgba(16, 185, 129, 0.12);
  font-size: 16px;
}

.redeem-card > button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: #5f7085;
  font-size: 34px;
  line-height: 1;
}

.detail-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.detail-head h2 {
  margin: 0;
  color: #243449;
  font-size: 30px;
}

.detail-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.recharge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 30px 0;
}

.recharge-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 42px 42px;
  border: 1px solid #33445c;
  border-radius: 16px;
  background: #202d40;
  color: #edf4fb;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.recharge-card h2 {
  margin: 0;
  color: #f4f8fc;
  font-size: 34px;
}

.recharge-card span {
  align-self: flex-start;
  min-width: 74px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1a9078;
  border-radius: 999px;
  color: #44e0bd;
  background: rgba(16, 185, 129, 0.12);
  font-size: 18px;
}

.recharge-card strong {
  color: #edf4fb;
  font-size: 24px;
}

.plain-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metrics span, .metrics strong {
  display: block;
}

.metrics span {
  color: var(--muted);
  margin-bottom: 8px;
}

.metrics strong {
  font-size: 24px;
}

.admin-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.admin-product:last-child {
  border-bottom: 0;
}

.pill {
  padding: 5px 8px;
  border-radius: 999px;
  background: #e7fbf6;
  color: var(--good);
  font-size: 12px;
}

.endpoint-list {
  display: grid;
  gap: 10px;
}

.endpoint {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.endpoint code {
  align-self: center;
  color: var(--ink);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.endpoint p {
  grid-column: 1 / -1;
  color: var(--muted);
  margin: 0;
}

.method {
  min-width: 46px;
  padding: 4px 7px;
  border-radius: 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.method.get {
  background: #eef8ff;
  color: #176da5;
}

.method.post {
  background: #e7fbf6;
  color: #0f8f75;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(16, 24, 32, 0.42);
}

.announcement-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.34);
  backdrop-filter: blur(3px);
}

.announcement-modal.open {
  display: flex;
}

.announcement-card {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  padding: 48px 46px 34px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 80px rgba(30, 64, 102, 0.24);
  animation: announcement-in 0.24s ease-out;
}

@keyframes announcement-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.announcement-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  color: #335f8e;
  font-size: 28px;
  line-height: 1;
}

.announcement-avatar {
  width: 118px;
  height: 118px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(30, 64, 102, 0.18);
}

.announcement-card h2 {
  margin: 0 0 28px;
  color: #51565f;
  font-size: 28px;
  text-align: center;
}

.announcement-content {
  color: #426da4;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 20px;
  line-height: 1.95;
}

.announcement-content p {
  margin: 0 0 16px;
}

.announcement-content a {
  color: #2ca8ff;
}

.plain-number {
  font-family: "Segoe UI", Arial, "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

.announcement-confirm {
  width: 100%;
  height: 68px;
  margin-top: 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5e9fc4, #547fae);
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(84, 127, 174, 0.24);
}

.announcement-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 16px 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5e9fc4, #547fae);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(84, 127, 174, 0.28);
}

.announcement-float img {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  object-fit: cover;
}

.modal.open {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(420px, 100%);
  padding: 22px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef1f5;
  color: var(--ink);
}

.pay-options {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.delivery-box {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: #f4f7fa;
  color: var(--muted);
  margin-bottom: 14px;
}

.delivery-box strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  #app {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid, .tool-grid, .metrics, .two-col, .admin-grid, .api-layout, .redeem-grid, .recharge-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-detail-card {
    grid-template-columns: 1fr;
  }

  .product-detail-visual {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .main {
    padding: 18px;
  }

  .topbar, .toolbar, .notice, .panel-head, .lookup, .copy-row, .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .tab {
    min-height: 48px;
    padding: 0 16px;
    font-size: 17px;
  }

  .sort-tab {
    height: 42px;
    font-size: 15px;
  }

  .nav, .product-grid, .tool-grid, .metrics, .two-col, .admin-grid, .api-layout, .redeem-grid, .recharge-grid {
    grid-template-columns: 1fr;
  }

  .redeem-card {
    grid-template-columns: 52px 1fr auto;
    min-height: 132px;
    padding: 18px;
  }

  .recharge-card {
    min-height: 240px;
    padding: 34px 28px;
  }

  .announcement-card {
    padding: 36px 22px 24px;
    border-radius: 18px;
  }

  .announcement-avatar {
    width: 96px;
    height: 96px;
  }

  .announcement-content {
    font-size: 16px;
    line-height: 1.8;
  }

  .announcement-confirm {
    height: 56px;
    font-size: 17px;
  }

  .product-detail-card {
    min-height: auto;
    padding: 18px;
    gap: 20px;
  }

  .product-detail-visual {
    min-height: 280px;
  }

  .product-detail-info h2 {
    font-size: 26px;
  }

  .detail-price {
    font-size: 44px;
  }

  .detail-meta {
    font-size: 16px;
  }

  .detail-note {
    font-size: 18px;
  }

  #search {
    width: 100%;
  }
}
