:root {
      --main: #4a230f;
      --accent: #b5353c;
      --bg: #faf7f2;
      --card: #ffffff;
      --border: #e8dfd3;
      --text: #111827;
      --muted: #6b7280;
    }
    * { box-sizing: border-box; }
    html {
      scroll-padding-bottom: calc(280px + env(safe-area-inset-bottom, 0px));
    }
    body {
      margin: 0;
      font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
      background: var(--bg);
      color: var(--text);
      background-image:
        radial-gradient(circle at top right, rgba(239, 228, 213, 0.38), transparent 24%),
        radial-gradient(circle at left 20%, rgba(255, 250, 245, 0.8), transparent 28%);
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255,255,255,0.98);
      border-bottom: 1px solid var(--border);
    }
    .site-header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    .brand-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: #111827;
      min-width: 0;
    }
    .brand-link img { width: 28px; height: 28px; object-fit: contain; }
    .brand-link span {
      font-weight: 600;
      font-size: 16px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .header-right {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .menu-shell { position: relative; }
    .menu-trigger {
      border: 1px solid #d7dadd;
      border-radius: 12px;
      background: #fff;
      color: #4b5563;
      font-size: 14px;
      font-weight: 400;
      min-height: 42px;
      padding: 9px 14px;
      line-height: 1.2;
      cursor: pointer;
    }
    .menu-trigger:hover {
      background: #f8fafc;
    }
    .menu-panel {
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      min-width: 260px;
      background: #fff;
      border: 1px solid #e8dfd3;
      border-radius: 14px;
      box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
      padding: 10px;
      display: none;
      z-index: 50;
    }
    .menu-panel.is-open { display: grid; gap: 4px; }
    .menu-section-title {
      margin: 2px 4px 0;
      color: #6b7280;
      font-size: 11px;
      letter-spacing: 0.8px;
      font-weight: 600;
    }
    .menu-section-divider {
      margin: 6px 4px;
      height: 1px;
      background: #ece6dc;
      border-radius: 999px;
    }
    .menu-panel a {
      text-decoration: none;
      color: #374151;
      font-size: 14px;
      padding: 10px 12px;
      border-radius: 10px;
      line-height: 1.25;
      min-height: 42px;
      display: flex;
      align-items: center;
    }
    .menu-panel a.is-active {
      color: #111827;
      background: rgba(0, 0, 0, 0.06);
      font-weight: 600;
    }
    .menu-item-disabled {
      color: #9ca3af;
      font-size: 14px;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px dashed #d1d5db;
      background: #f3f4f6;
      cursor: default;
      user-select: none;
      opacity: 0.9;
    }
    .menu-panel a:hover { background: #f7f7f7; color: #111827; }
    .menu-backdrop {
      position: fixed;
      inset: 0;
      border: 0;
      margin: 0;
      padding: 0;
      background: rgba(17, 24, 39, 0.28);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.16s ease;
      z-index: 45;
    }
    .menu-backdrop.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .container {
      max-width: 1328px;
      margin: 0 auto;
      padding: 36px clamp(64px, 8.5vw, 180px) 112px;
    }
    .shop-page-body .site-header {
      background: rgba(255,255,255,0.98);
      border-bottom-color: var(--border);
      backdrop-filter: blur(12px);
    }
    .shop-page-body {
      --shop-hero-shell-height: clamp(460px, calc(100svh - 172px), 620px);
    }
    .shop-page-body .site-header-inner {
      max-width: 1328px;
      padding-left: clamp(64px, 8.5vw, 180px);
      padding-right: clamp(64px, 8.5vw, 180px);
    }
    .shop-page-body .header-brand-switch {
      min-height: 40px;
      height: 40px;
      padding: 0 14px;
      border-radius: 12px;
      border: 1px solid rgba(79, 52, 38, 0.12);
      background: #fff;
      color: #5f544e;
      box-shadow: none;
    }
    .shop-page-body .header-brand-switch.is-active {
      background: rgba(181, 53, 60, 0.12);
      border-color: rgba(181, 53, 60, 0.28);
      color: var(--accent);
    }
    .shop-page-body .header-primary-link {
      min-height: 40px;
      height: 40px;
      padding: 0 14px;
      border-radius: 12px;
      border-color: var(--accent);
      background: var(--accent);
      color: #fff;
      box-shadow: none;
    }
    .shop-page-body .menu-trigger {
      min-height: 40px;
      height: 40px;
      padding: 0 14px;
      border-radius: 12px;
      border: 1px solid rgba(79, 52, 38, 0.12);
      background: #fff;
      color: #5f544e;
      box-shadow: none;
    }
    .shop-hero-shell {
      position: relative;
      z-index: 0;
    }
    .shop-hero-card {
      position: relative;
      min-height: var(--shop-hero-shell-height);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(79, 52, 38, 0.12);
      background: #2f1b12;
      box-shadow: none;
    }
    .shop-hero-media,
    .shop-hero-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .shop-hero-media img {
      object-fit: cover;
      display: block;
      transform: scale(1.02);
    }
    .shop-hero-media.is-fallback {
      background:
        radial-gradient(circle at 82% 18%, rgba(255, 210, 122, 0.26), transparent 28%),
        radial-gradient(circle at 18% 88%, rgba(255, 255, 255, 0.10), transparent 34%),
        linear-gradient(135deg, #1f130f 0%, #4c2415 45%, #9a4b1b 100%);
    }
    .shop-hero-fallback-art {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .shop-hero-fallback-orb {
      position: absolute;
      border-radius: 999px;
      filter: blur(2px);
    }
    .shop-hero-fallback-orb.orb-a {
      width: 280px;
      height: 280px;
      top: -60px;
      right: -30px;
      background: rgba(255, 226, 183, 0.16);
    }
    .shop-hero-fallback-orb.orb-b {
      width: 320px;
      height: 320px;
      left: -40px;
      bottom: -90px;
      background: rgba(255, 255, 255, 0.08);
    }
    .shop-hero-fallback-wordmark {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      text-align: center;
      color: rgba(255, 248, 240, 0.92);
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
      font-weight: 700;
      text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }
    .shop-hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          96deg,
          rgba(29, 18, 13, 0.84) 0%,
          rgba(29, 18, 13, 0.58) 42%,
          rgba(29, 18, 13, 0.24) 72%,
          rgba(29, 18, 13, 0.48) 100%
        );
    }
    .shop-hero-content {
      position: relative;
      min-height: var(--shop-hero-shell-height);
      padding: 34px 34px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
    }
    .shop-hero-main {
      max-width: 640px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      background: var(--accent);
      color: #fff;
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 13px;
      width: fit-content;
    }
    .shop-hero-main h1 {
      margin: 12px 0 10px;
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1.08;
      letter-spacing: -0.8px;
      color: #fff;
      font-weight: 700;
    }
    .shop-hero-main p {
      margin: 0;
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.82;
      font-size: 16px;
      max-width: 580px;
    }
    .shop-hero-support {
      margin-top: 14px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 15px;
      line-height: 1.82;
      max-width: 540px;
    }
    .hero-tags {
      margin-top: 18px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      border-radius: 12px;
      padding: 6px 12px;
      font-size: 13px;
      line-height: 1.2;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      font-weight: 400;
    }
    .shop-hero-search-panel {
      border-radius: 18px;
    }
    .shop-hero-search-controls {
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(255, 250, 245, 0.12);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 247, 240, 0.22);
      display: grid;
      gap: 12px;
    }
    .search-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 112px;
      gap: 10px;
    }
    .search-form.has-clear {
      grid-template-columns: minmax(0, 1fr) 112px 96px;
    }
    .search-input-wrap {
      position: relative;
      min-width: 0;
    }
    .search-input-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      width: 34px;
      height: 34px;
      transform: translateY(-50%);
      border-radius: 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.92);
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 247, 240, 0.16);
      pointer-events: none;
    }
    .search-input-icon svg {
      width: 18px;
      height: 18px;
      display: block;
    }
    .search-input-wrap input {
      width: 100%;
      min-height: 54px;
      border: 1px solid rgba(255, 247, 240, 0.14);
      border-radius: 14px;
      padding: 0 20px 0 60px;
      font-size: 16px;
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .search-input-wrap input::placeholder {
      color: rgba(255, 255, 255, 0.58);
    }
    .search-input-wrap input:focus {
      outline: none;
    }
    .search-input-wrap:focus-within input {
      border-color: rgba(255, 226, 183, 0.82);
      box-shadow: 0 0 0 1px rgba(255, 226, 183, 0.42);
      outline-offset: 0;
    }
    .search-form button,
    .search-form a {
      min-height: 54px;
      padding: 0 14px;
      border-radius: 14px;
      border: 1px solid rgba(255, 247, 240, 0.22);
      background: #fff;
      color: var(--main);
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .search-form button {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      cursor: pointer;
    }
    .shop-hero-search-divider {
      width: 100%;
      height: 1px;
      margin: 14px 0;
      background: rgba(255, 255, 255, 0.08);
    }
    .search-shortcut-block {
      display: grid;
      gap: 8px;
    }
    .search-shortcut-title {
      margin: 0;
      font-size: 13px;
      line-height: 1.4;
      color: rgba(255, 248, 240, 0.68);
      font-weight: 700;
    }
    .search-shortcut-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .search-shortcut-pill {
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      padding: 10px 14px;
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
      font-size: 13px;
      line-height: 1.3;
      font-weight: 600;
    }
    .search-shortcut-pill span {
      color: #ffd9a7;
    }
    .search-refinement-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding-top: 2px;
    }
    .search-info-chip {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 10px 14px;
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      font-size: 13px;
      line-height: 1.3;
      font-weight: 700;
    }
    .tag-page-hint {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }
    .tag-row,
    .selected-tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .tag-chip {
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      padding: 10px 18px;
      color: rgba(255, 255, 255, 0.84);
      background: rgba(255, 255, 255, 0.06);
      font-size: 13px;
      font-weight: 500;
      line-height: 1.3;
    }
    .tag-chip.is-active {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }
    .tag-chip span { opacity: 0.78; }
    .selected-tag-row {
      gap: 8px;
    }
    .selected-tag-pill {
      text-decoration: none;
      border: 1px solid var(--accent);
      border-radius: 999px;
      padding: 10px 18px;
      color: #fff;
      background: var(--accent);
      font-size: 13px;
      line-height: 1.3;
      font-weight: 400;
    }
    .product-section { margin-top: 44px; }
    .product-section {
      content-visibility: auto;
      contain-intrinsic-size: 700px;
    }
    .product-section h2 {
      margin: 0 0 16px;
      font-size: 30px;
      line-height: 1.2;
      color: #111827;
      text-align: center;
      font-weight: 400;
    }
    .product-section-stack {
      display: grid;
      gap: 0;
    }
    .product-section-block + .product-section-block {
      margin-top: 20px;
    }
    .product-subcategory-title {
      margin: 0 0 12px;
      padding-left: 14px;
      border-left: 6px solid #4a230f;
      font-size: 24px;
      line-height: 1.3;
      font-weight: 800;
      color: #111827;
    }
    .product-sort-group-title {
      margin: 0 0 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 12px;
      border: 1px solid #eadccc;
      background: #fffaf5;
      font-size: 15px;
      line-height: 1.35;
      font-weight: 800;
      color: #6b3f1a;
      box-shadow: none;
    }
    .product-sort-group-title::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #8a4b1f;
      flex: 0 0 auto;
    }
    .product-sort-group-title.is-auto {
      color: #8a5b33;
      background: #f8f5f0;
      border-color: #e6d7c2;
    }
    .product-sort-group-title.is-auto::before {
      background: #b08968;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }
    .product-card {
      text-decoration: none;
      color: inherit;
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      border: 1px solid #e9ddcf;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      box-shadow: 0 12px 28px rgba(74, 35, 15, 0.08);
      contain: content;
      content-visibility: auto;
      contain-intrinsic-size: 320px 320px;
    }
    .product-card-media {
      position: relative;
      overflow: hidden;
      background: #f6f1ea;
    }
    .product-card-media img {
      width: 100%;
      aspect-ratio: 1.18 / 1;
      height: auto;
      object-fit: cover;
      display: block;
      background: #f5f5f5;
    }
    .load-more-row {
      margin-top: 12px;
      display: flex;
      justify-content: center;
    }
    .load-more-btn {
      border: 1px solid #decdb9;
      background: #fffaf5;
      color: var(--main);
      border-radius: 10px;
      min-height: 42px;
      padding: 0 14px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
    }
    .load-more-btn[disabled] {
      opacity: 0.66;
      cursor: default;
    }
    .product-card-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-height: 174px;
      text-align: left;
    }
    .product-title {
      margin: 0;
      font-size: 18px;
      line-height: 1.38;
      color: #111827;
      font-weight: 800;
      min-height: 50px;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .product-title-main,
    .product-title-sub {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .product-title-main {
      -webkit-line-clamp: 2;
    }
    .product-title.has-subtitle .product-title-main {
      -webkit-line-clamp: 1;
    }
    .product-title-sub {
      margin-top: 2px;
      color: #374151;
      font-size: 0.92em;
      font-weight: 700;
      line-height: 1.35;
      -webkit-line-clamp: 1;
    }
    .product-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: flex-start;
      min-height: 30px;
      align-content: flex-start;
    }
    .product-tag {
      font-size: 12px;
      color: #6b7280;
      background: #fffdf9;
      border: 1px solid #eadfce;
      border-radius: 12px;
      padding: 5px 10px;
      line-height: 1.2;
      font-weight: 500;
    }
    .product-ffclub-hint {
      margin-top: auto;
      width: fit-content;
      max-width: 100%;
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 6px 10px;
      border-radius: 12px;
      border: 1px solid #fed7aa;
      background: #fff7ed;
      color: #b45309;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.2;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .price-badge {
      position: absolute;
      right: 10px;
      bottom: 10px;
      display: grid;
      gap: 4px;
      justify-items: end;
    }
    .price-main {
      display: inline-flex;
      align-items: center;
      border-radius: 16px;
      padding: 7px 11px;
      background: rgba(255, 255, 255, 0.95);
      color: #111827;
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      border: 1px solid rgba(232, 220, 207, 0.92);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
    }
    .empty-state {
      margin-top: 28px;
      border: 1px dashed #d8d1c6;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.62);
      padding: 24px;
      text-align: center;
      color: #4b5563;
      line-height: 1.7;
    }
    .site-footer {
      margin-top: 32px;
      background: transparent;
    }
    .footer-inner {
      max-width: 1328px;
      margin: 0 auto;
      padding: 12px clamp(64px, 8.5vw, 180px) 104px;
      display: grid;
      gap: 20px;
    }
    .brand-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 20px;
    }
    .brand-card {
      background: #fff;
      border: 1px solid #e7dacb;
      border-radius: 24px;
      padding: 32px 34px 30px;
      display: grid;
      gap: 18px;
    }
    .brand-slogan {
      margin: 0;
      display: inline-flex;
      width: fit-content;
      align-items: center;
      min-height: 40px;
      background: var(--main);
      color: #fff;
      border-radius: 999px;
      padding: 0 18px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.01em;
    }
    .brand-title {
      margin: 0;
      color: var(--main);
      font-size: clamp(28px, 2.8vw, 36px);
      line-height: 1.18;
      letter-spacing: -0.02em;
    }
    .brand-desc {
      margin: 0;
      width: 100%;
      box-sizing: border-box;
      color: #6b7280;
      font-size: 14px;
      line-height: 1.85;
      background: #fffaf5;
      border: 1px solid #e7dacb;
      border-radius: 18px;
      padding: 16px 18px;
    }
    .contact-list {
      display: grid;
      gap: 10px;
    }
    .contact-list p {
      margin: 0;
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      font-size: 14px;
      line-height: 1.65;
    }
    .contact-list span {
      color: #7b8190;
      font-weight: 500;
    }
    .contact-list a {
      text-decoration: none;
      color: #4b5563;
      overflow-wrap: anywhere;
    }
    .social-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 4px;
    }
    .social-buttons a {
      text-decoration: none;
      color: var(--main);
      border: 1px solid #decdb9;
      background: #fff;
      border-radius: 14px;
      padding: 10px 14px;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.2;
    }
    .legal-row {
      border: 1px solid #e7dacb;
      background: #fff;
      border-radius: 24px;
      padding: 20px 34px;
      display: flex;
      gap: 16px;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .legal-controls {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    .admin-link {
      text-decoration: none;
      color: var(--main);
      border: 1px solid #decdb9;
      background: #fff;
      border-radius: 14px;
      padding: 10px 16px;
      font-size: 14px;
      line-height: 1.2;
      font-weight: 600;
    }
    .admin-link:hover {
      background: #fff8f0;
    }
    .legal-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }
    .legal-links a {
      color: var(--main);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
    }
    .copyright {
      margin: 0;
      color: #8b95a7;
      font-size: 14px;
    }
    @media (min-width: 640px) {
      .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (min-width: 860px) {
      .shop-hero-main {
        max-width: 620px;
      }
      .search-form {
        grid-template-columns: minmax(0, 1fr) 132px;
      }
      .search-form.has-clear {
        grid-template-columns: minmax(0, 1fr) 132px 108px;
      }
    }
    @media (min-width: 960px) {
      .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    @media (min-width: 1200px) {
      .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }
    @media (min-width: 920px) {
      .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (hover: hover) and (pointer: fine) {
      .switch-pill:hover {
        background: #f8fafc;
      }
      .switch-pill.is-active:hover {
        background: #3b1a0a;
      }
      .search-shortcut-pill:hover,
      .tag-chip:hover {
        background: rgba(255, 255, 255, 0.12);
      }
      .search-form a:hover {
        background: #fff7f1;
      }
      .search-form button:hover {
        background: #c33d45;
        border-color: #c33d45;
      }
      .product-card {
        transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
      }
      .product-card:hover {
        transform: translateY(-2px);
        border-color: #d7c5b0;
        background: #fffaf6;
      }
      .load-more-btn:hover {
        background: #fff3e4;
      }
    }
    @media (max-width: 639px) {
      .container {
        padding-left: 18px;
        padding-right: 18px;
      }
      .site-header-inner,
      .shop-page-body .site-header-inner {
        padding-left: 18px;
        padding-right: 18px;
      }
      .shop-hero-card,
      .shop-hero-content {
        min-height: 500px;
      }
      .shop-hero-content {
        padding: 24px 20px 20px;
      }
      .shop-hero-main h1 {
        font-size: 34px;
      }
      .shop-hero-search-controls {
        padding: 14px;
        gap: 14px;
      }
      .search-shortcut-row {
        gap: 8px;
      }
      .search-shortcut-pill {
        width: calc(50% - 4px);
        text-align: center;
      }
      .search-form {
        grid-template-columns: 1fr 1fr;
      }
      .search-input-wrap {
        grid-column: 1 / -1;
      }
      .search-form button {
        grid-column: 1 / 2;
      }
      .search-form:not(.has-clear) button {
        grid-column: 1 / -1;
      }
      .search-form a {
        grid-column: 2 / 3;
      }
      .product-section {
        margin-top: 34px;
      }
      .product-section h2 {
        font-size: 24px;
      }
      .switch-row {
        gap: 8px;
      }
      .switch-pill {
        width: calc(50% - 4px);
      }
      .menu-shell {
        width: 100%;
      }
      .menu-trigger {
        width: 100%;
      }
      .menu-panel {
        position: fixed;
        top: 56px;
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
        box-shadow: none;
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
        z-index: 60;
      }
      .menu-backdrop {
        top: 56px;
        z-index: 55;
      }
      .footer-inner {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 92px;
        gap: 16px;
      }
      .brand-card {
        padding: 22px 18px;
        border-radius: 20px;
        gap: 14px;
      }
      .brand-slogan {
        min-height: 36px;
        padding: 0 14px;
        font-size: 13px;
      }
      .brand-title {
        font-size: 22px;
      }
      .brand-desc {
        padding: 14px;
        border-radius: 16px;
      }
      .contact-list p {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 10px;
      }
      .social-buttons a,
      .admin-link {
        border-radius: 12px;
        padding: 9px 12px;
        font-size: 13px;
      }
      .legal-row {
        padding: 18px;
        border-radius: 20px;
      }
      .legal-controls {
        width: 100%;
        gap: 12px;
      }
      .copyright {
        width: 100%;
        text-align: right;
      }
      .product-card {
        grid-template-columns: 132px minmax(0, 1fr);
        display: grid;
        min-height: auto;
      }
      .product-card-media img {
        width: 132px;
        height: 132px;
        aspect-ratio: auto;
      }
      .product-card-body {
        text-align: left;
        min-height: auto;
        padding: 14px 14px 12px;
        gap: 8px;
      }
      .product-title {
        min-height: auto;
        font-size: 17px;
      }
      .product-title-sub {
        font-size: 0.9em;
      }
      .product-tags {
        min-height: auto;
      }
      .product-tags {
        justify-content: flex-start;
      }
      .product-ffclub-hint {
        margin-left: 0;
        font-size: 12px;
        min-height: 28px;
        padding: 5px 9px;
      }
      .search-shell {
        margin-top: -18px;
      }
    }
    @media (max-width: 360px) {
      .container {
        padding-left: 12px;
        padding-right: 12px;
      }
    }
    @media (min-width: 1440px) {
      .container {
        max-width: 1400px;
        padding-left: clamp(104px, 10vw, 260px);
        padding-right: clamp(104px, 10vw, 260px);
        padding-top: 44px;
      }
      .shop-page-body .site-header-inner {
        max-width: 1400px;
        padding-left: clamp(104px, 10vw, 260px);
        padding-right: clamp(104px, 10vw, 260px);
      }
      .footer-inner {
        max-width: 1400px;
        padding-left: clamp(104px, 10vw, 260px);
        padding-right: clamp(104px, 10vw, 260px);
      }
      .shop-hero-content {
        padding: 34px 34px 30px;
      }
    }
