/* =========================================
   chouette clair - base design system
   scope: .cc-shell / .cc-page
========================================= */

.cc-shell,
.cc-shell * {
  box-sizing: border-box;
}

.cc-shell {
  --cc-bg: #f7f3ee;
  --cc-surface: #ffffff;
  --cc-surface-2: #f2ebe4;
  --cc-text: #111111;
  --cc-text-soft: #5d554f;
  --cc-text-faint: #857c75;
  --cc-line: rgba(17, 17, 17, 0.12);
  --cc-line-strong: rgba(17, 17, 17, 0.22);
  --cc-dark: #111111;
  --cc-accent: #d9c8b7;
  --cc-shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
  --cc-shadow-md: 0 16px 44px rgba(0, 0, 0, 0.06);
  --cc-shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.08);
  --cc-radius-sm: 14px;
  --cc-radius-md: 22px;
  --cc-radius-lg: 30px;
  --cc-radius-pill: 999px;
  --cc-container: 1440px;
  --cc-gutter: 40px;
  --cc-section-y: 96px;
}

.cc-shell body,
.cc-shell a,
.cc-shell button,
.cc-shell input,
.cc-shell textarea,
.cc-shell select {
  font: inherit;
}

.cc-shell a {
  color: inherit;
}

.cc-shell img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cc-shell ul,
.cc-shell ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-shell .cc-page {
  background: var(--cc-bg);
  color: var(--cc-text);
  min-height: 100vh;
  position: relative;
}

.cc-shell .cc-page,
.cc-shell .cc-page p,
.cc-shell .cc-page li,
.cc-shell .cc-page a,
.cc-shell .cc-page input,
.cc-shell .cc-page button,
.cc-shell #header,
.cc-shell #header a,
.cc-shell #header button,
.cc-shell .mobile-menu a,
.cc-shell .cc-footer,
.cc-shell .cc-footer a {
  font-family: 'Montserrat', 'Yu Gothic', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
}

.cc-shell .cc-display,
.cc-shell .cc-page h1,
.cc-shell .cc-page h2,
.cc-shell .cc-page h3,
.cc-shell .cc-brand-logo,
.cc-shell .cc-footer-brand {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.cc-shell .cc-container {
  max-width: var(--cc-container);
  margin: 0 auto;
  padding-left: var(--cc-gutter);
  padding-right: var(--cc-gutter);
}

.cc-shell .cc-section {
  padding-top: var(--cc-section-y);
  padding-bottom: var(--cc-section-y);
}

.cc-shell .cc-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6f665f;
}

.cc-shell .cc-title-xl {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  margin: 0;
  color: var(--cc-text);
}

.cc-shell .cc-title-lg {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  margin: 0;
  color: var(--cc-text);
}

.cc-shell .cc-title-md {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  margin: 0;
  color: var(--cc-text);
}

.cc-shell .cc-body {
  font-size: 16px;
  line-height: 1.95;
  color: var(--cc-text-soft);
}

.cc-shell .cc-body-sm {
  font-size: 13px;
  line-height: 1.8;
  color: var(--cc-text-faint);
}

.cc-shell .cc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cc-shell .cc-btn,
.cc-shell .cc-btn-secondary,
.cc-shell .cc-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--cc-radius-pill);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  transition: all .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.cc-shell .cc-btn {
  background: #111;
  color: #fff;
  border-color: #111;
}

.cc-shell .cc-btn:hover {
  background: #222;
}

.cc-shell .cc-btn-secondary,
.cc-shell .cc-btn-ghost {
  background: transparent;
  color: #111;
  border-color: rgba(17, 17, 17, 0.18);
}

.cc-shell .cc-btn-secondary:hover,
.cc-shell .cc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.45);
}

.cc-shell .cc-card {
  background: #fff;
  border-radius: var(--cc-radius-md);
  box-shadow: var(--cc-shadow-md);
}

.cc-shell .cc-input,
.cc-shell .cc-select,
.cc-shell .cc-textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius-pill);
  background: rgba(255, 255, 255, 0.88);
  color: var(--cc-text);
  padding: 0 20px;
  outline: none;
}

.cc-shell .cc-textarea {
  min-height: 140px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 24px;
  resize: vertical;
}

.cc-shell .cc-divider {
  width: 100%;
  height: 1px;
  background: var(--cc-line);
}

.cc-shell .cc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cc-shell .cc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cc-shell .cc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* products */
.cc-shell .cc-product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cc-shell .cc-product-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #f5eee7 0%, #e7ddd3 100%);
  aspect-ratio: 3 / 4;
  box-shadow: var(--cc-shadow-sm);
}

.cc-shell .cc-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-shell .cc-product-info {
  padding-top: 14px;
}

.cc-shell .cc-product-category {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-text-faint);
}

.cc-shell .cc-product-name {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--cc-text);
}

.cc-shell .cc-product-price {
  font-size: 14px;
  color: var(--cc-text);
}

.cc-shell .cc-product-price .original {
  opacity: .45;
  text-decoration: line-through;
  margin-right: 8px;
}

/* utility spacing */
.cc-shell .cc-mb-8 { margin-bottom: 8px; }
.cc-shell .cc-mb-12 { margin-bottom: 12px; }
.cc-shell .cc-mb-16 { margin-bottom: 16px; }
.cc-shell .cc-mb-20 { margin-bottom: 20px; }
.cc-shell .cc-mb-24 { margin-bottom: 24px; }
.cc-shell .cc-mb-32 { margin-bottom: 32px; }
.cc-shell .cc-mb-40 { margin-bottom: 40px; }

/* reveal fallback */
.cc-shell .reveal {
  opacity: 1;
  transform: none;
}

/* responsive */
@media (max-width: 1180px) {
  .cc-shell {
    --cc-gutter: 24px;
  }

  .cc-shell .cc-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .cc-shell {
    --cc-gutter: 16px;
    --cc-section-y: 72px;
  }

  .cc-shell .cc-grid-2,
  .cc-shell .cc-grid-3,
  .cc-shell .cc-grid-4 {
    grid-template-columns: 1fr;
  }

  .cc-shell .cc-title-xl {
    font-size: 40px;
  }

  .cc-shell .cc-title-lg {
    font-size: 34px;
  }

  .cc-shell .cc-body {
    font-size: 15px;
  }
}

/* =========================================
   conflict guard
========================================= */

/* 既存テーマの broad 指定をトップで打ち消す */
.cc-shell #index-view,
.cc-shell #index-view * {
  box-sizing: border-box;
}

.cc-shell #index-view h1,
.cc-shell #index-view h2,
.cc-shell #index-view h3,
.cc-shell #index-view h4,
.cc-shell #index-view h5,
.cc-shell #index-view h6 {
  font-family: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  margin: 0;
}

.cc-shell #index-view .hero-title,
.cc-shell #index-view .section-title,
.cc-shell #index-view .editorial-title,
.cc-shell #index-view .newsletter-inner h2 {
  font-family: 'Cormorant Garamond', serif !important;
  color: #111 !important;
  font-weight: 500 !important;
  line-height: 1.02 !important;
}

.cc-shell #index-view p,
.cc-shell #index-view a,
.cc-shell #index-view span,
.cc-shell #index-view li,
.cc-shell #index-view button,
.cc-shell #index-view input,
.cc-shell #index-view label {
  font-family: 'Montserrat', 'Yu Gothic', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif !important;
}

/* 旧テーマの .btn 系の影響を遮断 */
.cc-shell #index-view .btn,
.cc-shell #index-view [class*="btn-"] {
  box-shadow: none !important;
  text-shadow: none !important;
}

/* 今回の独自ボタンを強制 */
.cc-shell #index-view .btn-primary,
.cc-shell #index-view .btn-ghost,
.cc-shell #index-view .btn-outline,
.cc-shell #index-view .newsletter-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.16em !important;
  font-size: 12px !important;
  line-height: 1 !important;
  border-width: 1px !important;
  border-style: solid !important;
  box-shadow: none !important;
}

.cc-shell #index-view .btn-primary {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}

.cc-shell #index-view .btn-ghost,
.cc-shell #index-view .btn-outline {
  background: transparent !important;
  color: #111 !important;
  border-color: rgba(17,17,17,0.18) !important;
}

/* セクション余白を旧テーマから守る */
.cc-shell #index-view .hero,
.cc-shell #index-view .categories-section,
.cc-shell #index-view .editorial-section,
.cc-shell #index-view .testimonials-section,
.cc-shell #index-view .newsletter-section {
  margin: 0 !important;
}

/* 旧テーマのリンク色を打ち消す */
.cc-shell #index-view a {
  color: inherit;
}

/* フォーム系 */
.cc-shell #index-view input,
.cc-shell #index-view textarea,
.cc-shell #index-view select {
  appearance: none;
  -webkit-appearance: none;
}

/* ============================================================
   chouette clair - header adjust for ecforce section header
   cc-base.css 追記用
   ============================================================ */

#ecf_header_section {
  background: #faf8f4 !important;
  border-bottom: 1px solid #e7ddd2 !important;
  position: relative;
  z-index: 50;
}

#ecf_header_section .l-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 28px;
  min-height: 88px !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 20px;
  box-sizing: border-box;
}

#ecf_header_section .l-header__inner__block {
  display: flex;
  align-items: center;
}

#ecf_header_section .l-header__inner__block:first-child {
  justify-content: flex-start;
  gap: 18px;
}

#ecf_header_section .l-header__inner__block:last-child {
  justify-content: flex-end;
  gap: 18px;
}

#ecf_header_section .logo__block {
  justify-content: center !important;
  text-align: center;
  padding-left: 0 !important;
}

#ecf_header_section .l-header__inner__block__logo.cc-text-logo {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  max-width: none !important;
  width: auto !important;
}

#ecf_header_section .cc-logo-main {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #111111;
}

#ecf_header_section .cc-logo-sub {
  display: block;
  margin-top: 6px;
  font-family: "Montserrat", "Yu Gothic", sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.32em;
  color: #8c7661;
}

#ecf_header_section .l-header__inner__block__item,
#ecf_header_section .l-header__inner__block__item--search,
#ecf_header_section .l-header__inner__block__item--cart {
  display: flex;
  align-items: center;
  justify-content: center;
}

#ecf_header_section .l-header__inner__block__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111 !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

#ecf_header_section .l-header__inner__block__link:hover {
  opacity: 0.72;
}

#ecf_header_section .u-icon--account,
#ecf_header_section .u-icon--cart,
#ecf_header_section .u-icon--search,
#ecf_header_section .u-icon--close,
#ecf_header_section .u-icon--plus,
#ecf_header_section .u-icon--minus {
  color: #111111 !important;
}

#ecf_header_section .count {
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  border-radius: 999px;
  background: #111111 !important;
  color: #ffffff !important;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  padding: 0 5px;
  box-sizing: border-box;
}

#ecf_header_section .c-tooltip__content {
  background: #ffffff;
  border: 1px solid #e7ddd2;
  color: #111111;
}

/* 既存の画像ロゴが残っていても見えにくくする保険 */
#ecf_header_section .logo__block img {
  max-height: 40px;
  width: auto;
}

/* announcement / image banner を使わない前提で余白詰め */
#ecf_header_section .c-announce_bar,
#ecf_header_section .p-banner--header {
  display: none !important;
}

/* ------------------------------
   Global menu
   ------------------------------ */
#ecf_header_section .c-gmenu__container,
#ecf_header_section .p-search_menu__container,
#ecf_header_section .p-header_menu {
  background: #faf8f4 !important;
}

#ecf_header_section .c-gmenu__container__inner,
#ecf_header_section .c-gmenu__container__inner__list,
#ecf_header_section .p-search_menu__container__inner__search {
  border-color: #e7ddd2 !important;
}

#ecf_header_section .p-slide_menu__panel-link,
#ecf_header_section .p-slide_menu__panel-trigger,
#ecf_header_section .p-category_menu__text,
#ecf_header_section .p-category_menu__button,
#ecf_header_section .p-search_menu__container__inner__heading,
#ecf_header_section .label_title {
  color: #111111 !important;
  font-family: "Montserrat", "Yu Gothic", sans-serif !important;
  letter-spacing: 0.08em;
}

#ecf_header_section .p-search_menu__container__searchbtn .u-color__bg--accent,
#ecf_header_section .p-search_menu__container__searchbtn .u-color__bg--sub {
  background: #111111 !important;
  color: #ffffff !important;
}

#ecf_header_section .p-search_menu input,
#ecf_header_section .p-search_menu select,
#ecf_header_section .p-header_menu input {
  background: #ffffff !important;
  border-color: #e7ddd2 !important;
  color: #111111 !important;
}

/* ------------------------------
   Optional top nav line
   ------------------------------ */
#ecf_header_section + .p-header_menu {
  border-bottom: 1px solid #e7ddd2;
}

/* ------------------------------
   Mobile
   ------------------------------ */
@media screen and (max-width: 1024px) {
  #ecf_header_section .l-header__inner {
    padding: 16px 18px;
    min-height: 74px !important;
    grid-template-columns: 1fr auto 1fr !important;
    gap: 12px;
  }

  #ecf_header_section .cc-logo-main {
    font-size: 28px;
  }

  #ecf_header_section .cc-logo-sub {
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  #ecf_header_section .l-header__inner__block:first-child,
  #ecf_header_section .l-header__inner__block:last-child {
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  #ecf_header_section .l-header__inner {
    padding: 14px 14px;
    min-height: 66px !important;
  }

  #ecf_header_section .cc-logo-main {
    font-size: 22px;
  }

  #ecf_header_section .cc-logo-sub {
    margin-top: 4px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  #ecf_header_section .count {
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 9px;
  }
}

/* ============================================================
   chouette clair footer
   cc-base.css 追記用
   ============================================================ */

.cc-footer {
  background: #faf8f4;
  border-top: 1px solid #e7ddd2;
  padding: 72px 0 28px;
}

.cc-footer__top {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.cc-footer__logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: #111;
}

.cc-footer__logo-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #111;
}

.cc-footer__logo-sub {
  margin-top: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: #8c7661;
}

.cc-footer__brand-text {
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.9;
  color: #6f675f;
}

.cc-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.cc-footer__col h4 {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #111;
}

.cc-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc-footer__col li {
  margin-bottom: 12px;
}

.cc-footer__col a {
  font-size: 13px;
  line-height: 1.8;
  color: #6f675f;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cc-footer__col a:hover {
  opacity: 0.7;
}

.cc-footer__bottom {
  max-width: 1440px;
  margin: 36px auto 0;
  padding: 22px 28px 0;
  border-top: 1px solid #e7ddd2;
}

.cc-footer__copy {
  margin: 0;
  font-size: 12px;
  color: #8c7661;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .cc-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cc-footer__nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media screen and (max-width: 768px) {
  .cc-footer {
    padding: 56px 0 24px;
  }

  .cc-footer__top {
    padding: 0 18px;
  }

  .cc-footer__nav {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cc-footer__logo-main {
    font-size: 28px;
  }

  .cc-footer__logo-sub {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .cc-footer__bottom {
    padding: 20px 18px 0;
  }

  .cc-footer__copy {
    text-align: left;
  }
}

/* =========================================
   final sync for custom header / search / menu
========================================= */

/* 告知バーを必ず表示 */
.cc-shell .announcement-bar {
  display: block !important;
  background: #0f0f0f !important;
  color: #ffffff !important;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.cc-shell .announcement-bar p {
  margin: 0;
}

/* ロゴ2段 */
.cc-shell .header-logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.cc-shell .logo-main {
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: #0f0f0f;
  display: block;
}

.cc-shell .logo-sub {
  display: block;
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: #a08870;
}

/* ideal CSS / current JS の両対応 */
.cc-shell .mobile-menu.open,
.cc-shell .mobile-menu.is-open {
  right: 0 !important;
}

.cc-shell .menu-overlay.active,
.cc-shell .menu-overlay.is-open {
  opacity: 1 !important;
  visibility: visible !important;
}

.cc-shell .search-overlay.active,
.cc-shell .search-overlay.is-open {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ヘッダースクロール時 */
.cc-shell #header.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

/* モバイルメニューフッター */
.cc-shell .mobile-menu-footer p {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.35);
}

/* cursor が効かない環境でも使いにくくならないように */
@media (pointer: coarse) {
  body,
  .cc-shell .icon-btn,
  .cc-shell .btn-primary,
  .cc-shell .btn-ghost,
  .cc-shell .btn-outline,
  .cc-shell .newsletter-btn {
    cursor: auto !important;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* ============================================================
   HEADER LOGO MICRO TUNING
   cc-base.css の一番下に追記
   ============================================================ */

.cc-shell .logo-main {
  font-size: 0.98rem;
  letter-spacing: 0.32em;
  font-weight: 300;
}

.cc-shell .logo-sub {
  font-size: 0.48rem;
  letter-spacing: 0.42em;
  margin-top: 1px;
}

.cc-shell .nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.cc-shell .header-icons .icon-btn {
  font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
  .cc-shell .logo-main {
    font-size: 0.86rem;
    letter-spacing: 0.24em;
  }

  .cc-shell .logo-sub {
    font-size: 0.42rem;
    letter-spacing: 0.28em;
  }
}

/* ============================================================
   FINAL HEADER TUNING
   cc-base.css 一番下に追記
   ============================================================ */

.cc-shell .header-inner {
  min-height: 104px;
}

.cc-shell .logo-main {
  font-size: 0.98rem;
  letter-spacing: 0.32em;
  font-weight: 300;
}

.cc-shell .logo-sub {
  margin-top: 1px;
  font-size: 0.48rem;
  letter-spacing: 0.42em;
}

.cc-shell .nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.cc-shell .header-icons .icon-btn {
  font-size: 0.95rem;
}

.cc-shell .cart-count {
  transform: scale(0.92);
  transform-origin: center;
}

@media screen and (max-width: 768px) {
  .cc-shell .header-inner {
    min-height: 80px;
  }

  .cc-shell .logo-main {
    font-size: 0.86rem;
    letter-spacing: 0.24em;
  }

  .cc-shell .logo-sub {
    font-size: 0.42rem;
    letter-spacing: 0.28em;
  }

  .cc-shell .nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}