:root {
  --bg: #ece2d0;
  --ink: #16120f;
  --muted: #5b4d44;
  --panel: rgba(255, 250, 242, 0.86);
  --line: rgba(40, 27, 17, 0.14);
  --accent: #8c4b2f;
  --accent-strong: #5f2410;
  --shadow: 0 24px 60px rgba(32, 19, 12, 0.14);
}

* { box-sizing: border-box; }

html {
  font-family: 'Noto Sans JP', 'Noto Sans Arabic', 'Manrope', sans-serif;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Noto Sans Arabic', 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(140, 75, 47, 0.22), transparent 32%),
    radial-gradient(circle at right 20%, rgba(63, 91, 88, 0.18), transparent 30%),
    linear-gradient(180deg, #f8f1e5 0%, #efe5d6 45%, var(--bg) 100%);
  min-height: 100vh;
}

a { color: inherit; }

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

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

.brand {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.site-nav-link {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav-link.current {
  color: var(--ink);
  background: rgba(255,255,255,0.82);
  border-color: rgba(95, 36, 16, 0.22);
}

.lang-switch {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 4px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.lang-switch button {
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--muted);
}

.lang-switch button.active {
  background: var(--ink);
  color: #fff7ef;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 16px;
}

.breadcrumbs a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.hero-copy,
.hero-aside,
.content-card,
.footer-card,
.link-section {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: clamp(28px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 75, 47, 0.28), transparent 68%);
  pointer-events: none;
}

.page-shop {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 196, 139, 0.16), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(157, 70, 31, 0.26), transparent 20%),
    radial-gradient(circle at 50% 0%, rgba(54, 26, 16, 0.52), transparent 26%),
    linear-gradient(180deg, #170f0c 0%, #2b1a14 18%, #4a281c 38%, #a05d3f 58%, #eddcc7 84%, var(--bg) 100%);
}

.page-shop .page {
  width: min(1240px, calc(100% - 32px));
  padding-top: 30px;
}

.page-shop .topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  margin-bottom: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(237, 220, 199, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(20, 13, 10, 0.9), rgba(58, 32, 23, 0.78));
  box-shadow: 0 24px 60px rgba(15, 10, 8, 0.28);
  backdrop-filter: blur(16px);
}

.page-shop .brand,
.page-shop .breadcrumbs,
.page-shop .breadcrumbs a {
  color: rgba(252, 239, 226, 0.88);
}

.page-shop .lang-switch {
  background: rgba(255, 248, 240, 0.08);
  border-color: rgba(255, 240, 228, 0.16);
}

.page-shop .lang-switch button {
  color: rgba(255, 239, 226, 0.72);
}

.page-shop .lang-switch button.active {
  background: linear-gradient(135deg, #f3ddc5, #cb8d66);
  color: #20130f;
}

.page-shop .site-nav-link {
  color: rgba(247, 233, 220, 0.8);
  border-color: rgba(248, 227, 208, 0.12);
  background: rgba(255, 250, 242, 0.08);
}

.page-shop .site-nav-link.current {
  color: #fff5eb;
  background: rgba(255, 250, 242, 0.16);
  border-color: rgba(255, 224, 199, 0.28);
}

.page-shop .hero {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 26px;
}

.page-shop .hero-copy,
.page-shop .hero-aside,
.page-shop .content-card,
.page-shop .footer-card,
.page-shop .link-section,
.page-shop .faq-card {
  border-color: rgba(95, 36, 16, 0.22);
}

.page-shop .hero-copy {
  background:
    radial-gradient(circle at 82% 22%, rgba(24, 18, 15, 0.14), transparent 18%),
    linear-gradient(145deg, rgba(255, 249, 241, 0.98), rgba(240, 225, 205, 0.94));
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(21, 14, 10, 0.24);
}

.page-shop .hero-copy::before {
  content: '';
  position: absolute;
  right: 32px;
  top: 28px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 14, 12, 0.92) 0 16%, rgba(58, 45, 37, 0.84) 17% 32%, rgba(20, 16, 14, 0.96) 33% 53%, rgba(144, 110, 82, 0.3) 54% 62%, transparent 63%);
  opacity: 0.92;
  pointer-events: none;
}

.page-shop .hero-copy::after {
  background: radial-gradient(circle, rgba(193, 103, 54, 0.28), transparent 68%);
}

.page-shop .hero-aside {
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(32, 21, 17, 0.94), rgba(73, 42, 29, 0.92)),
    radial-gradient(circle at top right, rgba(212, 150, 105, 0.18), transparent 24%);
  color: #f8ede1;
  box-shadow: 0 30px 80px rgba(12, 8, 6, 0.28);
}

.page-shop .hero-aside .aside-label,
.page-shop .hero-aside .aside-quote,
.page-shop .hero-aside .pill {
  color: inherit;
}

.page-shop .kicker {
  background: rgba(44, 25, 18, 0.08);
  color: #642e19;
}

.page-shop .button.primary {
  background: linear-gradient(135deg, #261610, #9f5332);
  box-shadow: 0 16px 34px rgba(90, 42, 23, 0.28);
}

.page-shop .button.secondary,
.page-shop .pill,
.page-shop .site-nav-link {
  background: rgba(255, 250, 242, 0.72);
}

.page-shop .button.secondary {
  border-color: rgba(120, 58, 32, 0.18);
}

.page-shop .pill {
  color: #4b3a30;
  border-color: rgba(95, 36, 16, 0.18);
}

.page-shop .site-nav-link.current {
  border-color: rgba(95, 36, 16, 0.32);
  box-shadow: inset 0 0 0 1px rgba(95, 36, 16, 0.08);
}

.page-shop .section-heading h2,
.page-shop .content-card h2,
.page-shop .link-section h2,
.page-shop .faq-card h2 {
  color: #fff3e7;
}

.page-shop .section-heading p {
  color: rgba(249, 234, 220, 0.76);
}

.page-shop .content-card,
.page-shop .footer-card,
.page-shop .link-section,
.page-shop .faq-card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(48, 29, 23, 0.9), rgba(85, 48, 34, 0.84));
  color: #f9ede2;
}

.page-shop .content-card p,
.page-shop .content-card li,
.page-shop .footer-card p,
.page-shop .link-card span,
.page-shop .journey-card p,
.page-shop .trust-card p,
.page-shop .collection-card span,
.page-shop .collection-card b {
  color: rgba(249, 234, 220, 0.8);
}

.page-shop .trust-card,
.page-shop .journey-card,
.page-shop .collection-card,
.page-shop .link-card {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.1), rgba(255, 247, 239, 0.04));
  border-color: rgba(255, 230, 210, 0.14);
}

.page-shop .collection-card {
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.page-shop .collection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 217, 186, 0.26);
  box-shadow: 0 20px 44px rgba(17, 11, 8, 0.22);
}

.page-shop .collection-card em,
.page-shop .trust-card strong,
.page-shop .journey-card strong,
.page-shop .collection-card strong,
.page-shop .link-card strong,
.page-shop .footer-links a {
  color: #fff4e9;
}

.page-shop .collection-card small,
.page-shop .step-badge,
.page-shop .pill {
  background: rgba(255, 236, 219, 0.12);
  color: #ffd8bb;
}

.page-shop .footer-meta {
  align-items: center;
}

.page-shop .footer-links a {
  text-decoration-color: rgba(255, 230, 210, 0.32);
}

.page-shop .insight-section {
  margin-bottom: 24px;
}

.kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(95, 36, 16, 0.09);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

h1, h2 {
  font-family: 'Noto Serif JP', 'Noto Naskh Arabic', serif;
  line-height: 1.05;
  margin: 0;
  font-weight: 600;
}

.hero-title {
  font-family: 'Noto Serif JP', 'Noto Naskh Arabic', serif;
  line-height: 1.05;
  margin: 0;
  font-weight: 600;
}

h1,
.hero-title {
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  max-width: 11ch;
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted);
  margin: 0 0 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--ink);
  color: #fff8ef;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.5);
  color: var(--ink);
}

.hero-aside {
  padding: 26px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.aside-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.aside-quote {
  font-family: 'Noto Serif JP', 'Noto Naskh Arabic', serif;
  font-size: 2rem;
  line-height: 1.2;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.content-card {
  padding: 24px;
  min-height: 100%;
}

.content-card h2,
.link-section h2,
.faq-card h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 14px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 12px;
}

.content-card ul {
  margin: 0;
  padding-left: 18px;
}

.link-section,
.faq-card {
  margin-top: 18px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

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

.link-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
}

.insight-section {
  margin-top: 18px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
}

.section-heading p,
.trust-card p,
.collection-card span,
.journey-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.trust-grid,
.collection-grid,
.journey-grid {
  display: grid;
  gap: 16px;
}

.trust-grid,
.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card,
.journey-card,
.collection-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.56);
}

.trust-card strong,
.journey-card strong,
.collection-card strong {
  font-size: 1.02rem;
}

.collection-card {
  text-decoration: none;
}

.collection-card-image {
  margin: -4px -4px 2px;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(95, 36, 16, 0.12), rgba(244, 236, 224, 0.8));
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.collection-card em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-strong);
}

.collection-card small {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(95, 36, 16, 0.08);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-card b {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
}

.step-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(95, 36, 16, 0.1);
  color: var(--accent-strong);
  font-weight: 700;
}

.link-card strong {
  font-size: 1.02rem;
}

.link-card span {
  color: var(--muted);
  line-height: 1.6;
}

.footer-card {
  margin-top: 18px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-card p {
  margin: 0;
  color: var(--muted);
}

.footer-meta {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.faq-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.language-panel { display: none; }
.language-panel.active { display: block; }

[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .topbar,
[dir="rtl"] .footer-card {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-meta,
[dir="rtl"] .footer-links {
  justify-items: start;
  justify-content: flex-start;
}

[dir="rtl"] .site-nav,
[dir="rtl"] .pill-list,
[dir="rtl"] .hero-actions,
[dir="rtl"] .breadcrumbs {
  direction: rtl;
}

[dir="rtl"] .content-card ul {
  padding-left: 0;
  padding-right: 18px;
}

@media (max-width: 980px) {
  .hero,
  .content-grid,
  .link-grid,
  .trust-grid,
  .collection-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  h1,
  .hero-title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy,
  .hero-aside,
  .content-card,
  .footer-card,
  .link-section,
  .faq-card {
    padding: 20px;
  }
}
