/** Shopify CDN: Minification failed

Line 44:0 All "@import" rules must come first

**/
/* ============================================
   Calmiora Design System
   ============================================ */

:root {
  /* Brand palette */
  --cal-sage: #7E9B82;
  --cal-sage-light: #D6E2D8;
  --cal-sage-pale: #EDF2EE;
  --cal-sage-dark: #4D6B51;
  --cal-forest: #2D3B2F;
  --cal-cream: #FAFAF6;
  --cal-cream-warm: #F5F2EC;
  --cal-white: #FFFFFF;
  --cal-text: #2D3B2F;
  --cal-text-mid: #5A6B5C;
  --cal-text-light: #8A9A8C;
  --cal-border: rgba(45, 59, 47, 0.08);
  --cal-star: #E8A23A;

  /* Variant colors */
  --cal-green: #90B77D;
  --cal-silver: #C0C0C0;
  --cal-purple: #B5A8D5;
  --cal-blue: #7FBCD2;
  --cal-pink: #E8A0BF;

  /* Typography */
  --cal-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --cal-font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --cal-container: 1200px;
  --cal-radius-card: 20px;
  --cal-radius-pill: 100px;
}

/* Load webfonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Outfit:wght@400;500;600;700&display=swap');

/* Base resets */
body {
  font-family: var(--cal-font-body);
  color: var(--cal-text);
  background: var(--cal-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cal-section {
  padding: 96px 0;
}

.cal-section--tight {
  padding: 72px 0;
}

.cal-section--cream {
  background: var(--cal-cream);
}

.cal-section--cream-warm {
  background: var(--cal-cream-warm);
}

.cal-section--forest {
  background: var(--cal-forest);
  color: var(--cal-white);
}

.cal-container {
  max-width: var(--cal-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Headings */
.cal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cal-sage);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
}

.cal-section--forest .cal-eyebrow {
  color: var(--cal-sage-light);
}

.cal-h1 {
  font-family: var(--cal-font-heading);
  font-weight: 700;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cal-forest);
  margin: 0 0 20px;
}

.cal-h2 {
  font-family: var(--cal-font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  color: var(--cal-forest);
  margin: 0 0 16px;
}

.cal-section--forest .cal-h2,
.cal-section--forest .cal-h1 {
  color: var(--cal-white);
}

.cal-h3 {
  font-family: var(--cal-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--cal-forest);
  margin: 0;
}

.cal-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cal-text-mid);
  max-width: 540px;
  margin: 0 auto;
}

.cal-section--forest .cal-lede {
  color: var(--cal-sage-light);
}

/* Section header (centered eyebrow + title + lede) */
.cal-section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* Buttons */
.cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--cal-radius-pill);
  font-family: var(--cal-font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cal-btn--primary {
  background: var(--cal-forest);
  color: var(--cal-white);
}

.cal-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45, 59, 47, 0.18);
}

.cal-btn--light {
  background: var(--cal-white);
  color: var(--cal-forest);
}

.cal-btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.15);
}

.cal-btn--link {
  color: var(--cal-forest);
  padding: 15px 20px;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  font-size: 14px;
}

/* Card */
.cal-card {
  background: var(--cal-white);
  border: 1px solid var(--cal-border);
  border-radius: var(--cal-radius-card);
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(45, 59, 47, 0.08);
}

/* Scroll-in animation */
@keyframes calFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.cal-reveal {
  animation: calFadeUp 0.6s ease both;
}

/* Mobile */
@media (max-width: 749px) {
  .cal-section {
    padding: 64px 0;
  }
  .cal-section--tight {
    padding: 48px 0;
  }
  .cal-section-head {
    margin-bottom: 40px;
  }
}

/* Shop page — force cream background on body when shop sections exist */
body:has(.shop-hero) {
  background: #FAFAF6 !important;
}
body:has(.shop-hero) .shopify-section {
  background: transparent !important;
}
body:has(.shop-hero) .shop-trust {
  background: #F5F2EC;
}

/* ============================================
   Header Navigation Typography Upgrade
   ============================================ */
.header__menu-item,
.header__menu-item span {
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.015em !important;
  color: #2D3B2F !important;
  transition: color 0.2s ease;
}

.header__menu-item:hover,
.header__menu-item:hover span {
  color: #4D6B51 !important;
}

.header__active-menu-item,
.header__menu-item--active {
  font-weight: 600 !important;
  color: #2D3B2F !important;
}

.header__inline-menu .list-menu--inline {
  gap: 4px;
}

@media screen and (min-width: 990px) {
  .header__inline-menu .list-menu--inline > li {
    margin-right: 8px;
  }
  .header {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }
}

.header__icon {
  color: #2D3B2F !important;
}
.header__icon:hover {
  color: #4D6B51 !important;
}

@media (max-width: 768px) {
  .header__menu-item,
  .header__menu-item span {
    font-size: 16px !important;
  }
}
/* ============================================
   CALMIORA JOURNAL — Listing Page
   ============================================ */

/* —— HERO —— */
.calmiora-journal-hero {
  background: #2D3B2F;
  padding: 6rem 2rem 7rem;
  text-align: center;
  color: #FAFAF6;
}

.cjh-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cjh-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #B5C2A8;
  margin-bottom: 1.5rem;
}

.cjh-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: #FAFAF6;
}

.cjh-heading em {
  font-style: italic;
  color: #C9D4BD;
}

.cjh-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: #C9D4BD;
  margin: 0 auto;
  max-width: 540px;
}

/* —— FEATURED —— */
.calmiora-journal-featured {
  background: #F5F0E6;
  padding: 5rem 2rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

.cjf-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6B7461;
  margin-bottom: 1rem;
}

.cjf-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  background: #FAFAF6;
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid rgba(45, 59, 47, 0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cjf-card:hover {
  box-shadow: 0 12px 40px rgba(45, 59, 47, 0.08);
  transform: translateY(-2px);
}

.cjf-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #EDE5D2;
}

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

.cjf-image-placeholder {
  background: linear-gradient(135deg, #C4A57B 0%, #8A6E4B 50%, #4A3B2A 100%);
}

.cjf-content {
  padding: 2rem 2.5rem 2rem 0;
}

.cjf-meta {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #6B7461;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cjf-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #2D3B2F;
}

.cjf-title em { font-style: italic; }

.cjf-excerpt {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #4D5A4E;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.cjf-read {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #2D3B2F;
  padding-bottom: 3px;
  border-bottom: 1px solid #2D3B2F;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cjf-arrow {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.cjf-card:hover .cjf-arrow { transform: translateX(4px); }

/* —— GRID —— */
.calmiora-journal-grid {
  background: #F5F0E6;
  padding: 3rem 2rem 5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.cjg-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6B7461;
  margin-bottom: 1.5rem;
}

.cjg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cjg-card {
  background: #FAFAF6;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid rgba(45, 59, 47, 0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cjg-card:hover {
  box-shadow: 0 12px 32px rgba(45, 59, 47, 0.08);
  transform: translateY(-2px);
}

.cjg-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EDE5D2;
}

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

.cjg-image-placeholder {
  background: linear-gradient(135deg, #D5D3CC 0%, #8C8675 100%);
}

.cjg-content {
  padding: 1.25rem 1.25rem 1.5rem;
}

.cjg-meta {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #6B7461;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cjg-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 0.6rem;
  color: #2D3B2F;
}

.cjg-excerpt {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  color: #4D5A4E;
  line-height: 1.6;
  margin: 0;
}

/* —— NEWSLETTER —— */
.calmiora-journal-newsletter {
  background: #2D3B2F;
  color: #FAFAF6;
  padding: 5rem 2rem;
  text-align: center;
}

.cjn-inner {
  max-width: 500px;
  margin: 0 auto;
}

.cjn-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #B5C2A8;
  margin-bottom: 1.5rem;
}

.cjn-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #FAFAF6;
}

.cjn-heading em { font-style: italic; color: #C9D4BD; }

.cjn-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #C9D4BD;
  line-height: 1.65;
  margin: 0 0 2rem;
}

.cjn-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.cjn-input {
  flex: 1;
  padding: 14px 16px;
  background: rgba(250, 250, 246, 0.06);
  border: 1px solid rgba(250, 250, 246, 0.3);
  color: #FAFAF6;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
}

.cjn-input::placeholder { color: rgba(250, 250, 246, 0.5); }
.cjn-input:focus { border-color: #C9D4BD; }

.cjn-button {
  padding: 14px 24px;
  background: #FAFAF6;
  color: #2D3B2F;
  border: none;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cjn-button:hover { background: #E8E0CC; }

.cjn-success, .cjn-error {
  width: 100%;
  flex-basis: 100%;
  margin: 1rem 0 0;
  font-size: 13px;
  text-align: center;
}

.cjn-success { color: #B5C2A8; }
.cjn-error { color: #F0997B; }

/* —— CTA —— */
.calmiora-journal-cta {
  background: linear-gradient(135deg, #F5F0E6 0%, #EDE5D2 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.cjc-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cjc-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6B7461;
  margin-bottom: 1.5rem;
}

.cjc-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: #2D3B2F;
}

.cjc-heading em { font-style: italic; }

.cjc-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #4D5A4E;
  line-height: 1.65;
  margin: 0 0 2.5rem;
}

.cjc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.cjc-stat {
  background: rgba(250, 250, 246, 0.55);
  padding: 1.25rem 0.75rem;
  border-radius: 10px;
  border: 0.5px solid rgba(45, 59, 47, 0.08);
}

.cjc-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #2D3B2F;
  line-height: 1;
}

.cjc-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6B7461;
  margin-top: 6px;
}

.cjc-button {
  display: inline-block;
  background: #2D3B2F;
  color: #FAFAF6;
  padding: 16px 40px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cjc-button:hover {
  background: #4D6B51;
  transform: translateY(-1px);
}

.cjc-disclaimer {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: #6B7461;
  line-height: 1.6;
  max-width: 520px;
  margin: 2.5rem auto 0;
}

/* —— RESPONSIVE —— */
@media (max-width: 900px) {
  .cjf-card { grid-template-columns: 1fr; }
  .cjf-content { padding: 1.5rem; }
  .cjg-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .calmiora-journal-hero { padding: 4rem 1.5rem 4.5rem; }
  .calmiora-journal-featured,
  .calmiora-journal-grid { padding-left: 1.25rem; padding-right: 1.25rem; }
  .cjg-cards { grid-template-columns: 1fr; }
  .cjn-form { flex-direction: column; }
  .cjn-button { width: 100%; }
  .cjc-stats { gap: 8px; }
  .cjc-stat { padding: 1rem 0.5rem; }
  .cjc-stat-value { font-size: 22px; }
}
/* ============================================
   JOURNAL — Full-bleed override (fix for max-width container)
   ============================================ */

.calmiora-journal-hero,
.calmiora-journal-featured,
.calmiora-journal-grid,
.calmiora-journal-newsletter,
.calmiora-journal-cta {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Inner content stays centered */
.cjh-inner,
.cjn-inner,
.cjc-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* Featured & Grid: cards stay within max 1200 inner width */
.calmiora-journal-featured > *,
.calmiora-journal-grid > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Prevent horizontal scroll on body */
html, body {
  overflow-x: hidden;
}
/* ============================================
   Header 单行不换行 - Calmiora 自定义
   ============================================ */

/* 1. 中间菜单区强制单行,且优先占满可用空间 */
.header__inline-menu {
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
}

.header__inline-menu .list-menu--inline {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.4rem;
}

/* 2. 缩小每个菜单项的左右间距 + 字号微调 */
.header__menu-item {
  padding: 1.2rem 0.8rem !important;
  font-size: 1.4rem;
  white-space: nowrap;
}

/* 3. 货币国家选择器更紧凑 */
.header-localization {
  gap: 0.4rem;
}

.localization-form__select {
  font-size: 1.2rem;
  padding-inline: 1.2rem 2.8rem;
}

.disclosure__button.localization-form__select {
  padding-right: 2rem;
}

/* 4. Header 整体左右内边距收紧 */
.header {
  padding-inline: 2rem;
}

@media screen and (min-width: 990px) {
  .header {
    padding-inline: 3rem;
    grid-template-columns: auto 1fr auto;
  }
}

/* 5. Logo 区域不抢空间 */
.header__heading,
.header__heading-link {
  flex-shrink: 0;
}

/* 6. 右侧图标区不抢空间 */
.header__icons {
  flex-shrink: 0;
}

/* 7. 1100px-1280px 之间的中间断点,进一步收紧 */
@media screen and (min-width: 990px) and (max-width: 1280px) {
  .header__menu-item {
    padding: 1.2rem 0.6rem !important;
    font-size: 1.3rem;
  }
  
  .localization-form__select {
    font-size: 1.1rem;
  }
}