﻿
/* ── Pretendard font ── */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');


/* ── Design tokens ── */
:root {
  --bg:             #ffffff;
  --surface:        #ffffff;
  --surface-2:      #ffffff;
  --border:         #111111;
  --border-light:   #d4d4d4;
  --text:           #111111;
  --text-muted:     #4b5563;
  --text-dim:       #000000;
  --accent:         #1B2E4B;
  --accent-hover:   #2E6DA4;
  --accent-light:   rgba(26,122,122,0.08);
  --accent-border:  rgba(26,122,122,0.25);
  --site-px:        clamp(24px, 11.46vw, 220px);
}

/* ── Base reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  scrollbar-gutter: stable;
}

body {
  font-family: 'Poppins', "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont,
    system-ui, "Apple SD Gothic Neo", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Selection ── */
::selection { background: var(--accent); color: #fff; }

/* ── Navigation ── */
.mc2-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  background: #ffffff;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.mc2-nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: #e8e8e8;
}
.mc2-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
}
.home .mc2-nav:not(.scrolled):not(.menu-open) {
  background: transparent;
}
.home .mc2-nav:not(.scrolled):not(.menu-open)::after {
  display: none;
}
/* Home 상단바 — 스크롤 전 글씨 #111 */
.home .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-logo {
  color: #111;
}
.home .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-link {
  color: #111;
}
.home .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-link:hover,
.home .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-link.active {
  color: #111;
  font-weight: 600;
}
.home .mc2-nav:not(.scrolled):not(.menu-open) .mc2-shop-toggle {
  color: #111;
}
.mc2-nav-inner {
  display: flex;
  height: 80px;
  align-items: center;
  overflow: visible;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px 0 16px;
  box-sizing: border-box;
}

/* Logo */
.mc2-nav-logo-col {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  flex-shrink: 0;
  margin-right: 90px;
}
.mc2-nav-logo {
  display: block;
  height: 24px;
  width: auto;
  fill: currentColor;
  color: #000;
  overflow: hidden;
  flex-shrink: 0;
}

@keyframes mc2SlideLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes mc2SlideBottom {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mc2SlideRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes mc2LabsSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* 메인 페이지에서만 로고 애니메이션 */
.mc2-is-front .mc2-nav-logo { overflow: visible; }
.mc2-is-front .mc2-logo-letter { opacity: 0; }
.mc2-is-front .mc2-logo-letter-1 { animation: mc2SlideLeft   0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards; }
.mc2-is-front .mc2-logo-letter-2 { animation: mc2SlideBottom 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.2s  forwards; }
.mc2-is-front .mc2-logo-letter-3 { animation: mc2SlideRight  0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards; }
.mc2-is-front .mc2-logo-labs {
  opacity: 0;
  animation: mc2LabsSlide 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

/* Desktop nav links */
.mc2-nav-links {
  display: flex;
  align-items: center;
  gap: 60px;
}
.mc2-nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s, font-weight 0.2s;
  text-transform: capitalize;
}
.mc2-nav-link:hover,
.mc2-nav-link.active { color: #111111; font-weight: 600; opacity: 1; }

/* ── Shop dropdown ── */
.mc2-nav-dropdown {
  position: relative;
}
.mc2-shop-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.mc2-dropdown-arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.mc2-nav-dropdown.open .mc2-dropdown-arrow {
  transform: rotate(180deg);
}
.mc2-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  min-width: 200px;
  z-index: 200;
}
.mc2-nav-dropdown.open .mc2-dropdown-menu {
  display: block;
}
.mc2-dropdown-menu-inner {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mc2-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.mc2-dropdown-item:hover {
  background: #f5f5f5;
}
.mc2-dropdown-item--disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.mc2-dropdown-soon {
  font-size: 10px;
  font-weight: 500;
  color: #888;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Mobile sub-items */
.mc2-mobile-sub {
  padding-left: 24px !important;
  font-size: 14px !important;
  opacity: 0.6;
}

/* Mobile Shop toggle row */
.mc2-mobile-shop-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #d8d8d8;
  cursor: pointer;
}
.mc2-mobile-shop-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: 'Poppins', sans-serif;
  color: #111;
}
.mc2-mobile-shop-arrow {
  transition: transform 0.2s ease;
  color: #111;
}
.mc2-mobile-shop-row.open .mc2-mobile-shop-arrow {
  transform: rotate(180deg);
}
.mc2-mobile-shop-sub {
  display: none;
  flex-direction: column;
}
.mc2-mobile-shop-sub.open {
  display: flex;
}
.mc2-mobile-shop-sub .mc2-mobile-sub {
  display: block;
  padding: 10px 0 10px 16px !important;
  border-bottom: 1px solid #d8d8d8;
  font-size: 13px !important;
  opacity: 0.65;
  font-family: 'Poppins', sans-serif;
  color: #111;
  text-decoration: none;
}

/* Right section */
.mc2-nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.mc2-nav-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.mc2-nav-signin:hover { opacity: 0.45; }
.mc2-nav-cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  background: none;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.mc2-nav-cart-pill:hover { opacity: 0.5; }
/* 아이콘과 동일한 22×22 — 뱃지 기준점이 이 래퍼 기준 */
.mc2-cart-icon-wrap {
  position: relative;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mc2-cart-count {
  position: absolute;
  bottom: -8px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  padding: 0 3px;
  box-sizing: border-box;
}

/* Mobile right group (cart + hamburger) */
.mc2-nav-mob-right {
  display: none;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

/* Mobile account icon */
.mc2-nav-mob-signin {
  display: none;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/* Mobile cart icon */
.mc2-nav-mob-cart {
  display: none;
  align-items: center;
  position: relative;
  text-decoration: none;
}
.mc2-nav-mob-cart-count {
  position: absolute;
  bottom: -5px;
  right: -7px;
  min-width: 15px;
  height: 15px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  padding: 0 3px;
  box-sizing: border-box;
}

/* Hamburger (mobile only — hidden on desktop) */
.mc2-nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111;
}

/* Mobile menu */
.mc2-mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid #d0d0d0;
  padding: 0 2rem;
  flex-direction: column;
}
.mc2-mobile-menu a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 1rem 0;
  color: #111;
  border-bottom: 1px solid #e8e8e8;
  display: block;
  transition: color 0.2s;
}
.mc2-mobile-menu a:last-child { border-bottom: none; }
.mc2-mobile-menu a:hover { color: var(--accent); }
.mc2-mobile-menu.open { display: flex; }

/* Nav responsive */
@media (max-width: 797px) {
  .mc2-nav-links { display: none; }
  .mc2-nav-right { display: none; }
  .mc2-nav-mob-right { display: flex; }
  .mc2-nav-mob-signin { display: flex; }
  .mc2-nav-mob-cart { display: flex; }
  .mc2-nav-hamburger { display: flex; }
  .mc2-nav-inner { height: 40px; padding: 0 16px; }
  .mc2-nav-logo { height: 18px; }
}
@media (max-width: 767px) {
  .mc2-nav-inner { height: 56px; padding: 0 16px; }
  .mc2-logo-mc2, .mc2-logo-labs { font-size: 20px; }
  .mc2-nav-logo-col { margin-right: 0; }
  .mc2-page { padding-top: 56px; }
}

/* ── Page wrapper ── */
.mc2-page {
  padding-top: 90px;
  min-height: 100vh;
  background: #ffffff;
}

/* ── Container ── */
.mc2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Home page ── */

/* Section 1: Hero */
.hm-hero {
  background: #ffffff;
}
.hm-hero-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 14.625rem var(--site-px) 11rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hm-hero-left {
  flex: 1;
  min-width: 0;
}
.hm-definition {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #111;
  margin-bottom: 1rem;
}
.hm-hero-title {
  font-size: 72px;
  font-weight: 400;
  line-height: 80px;
  color: #000;
  margin-bottom: 2rem;
}
.hm-hero-body {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  color: #000;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hm-hero-btns {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hm-btn-outline {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  background: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.2s;
}
.hm-btn-outline:hover { background: #000; color: #fff; }
.hm-btn-text {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.hm-btn-text:hover { opacity: 0.55; }
.hm-hero-image {
  flex: 0 0 clamp(280px, 40%, 600px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hm-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Section 2: Products — dark navy, keeps Figma intent */
.hm-products {
  background: #1b2d55;
}
.hm-products-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 5rem var(--site-px) 6rem;
}
.hm-products-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.hm-products-header-left {
  grid-column: 1 / 3;
}
.hm-products-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
}
.hm-products-header-right {
  grid-column: 3 / 5;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.hm-products-desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  color: rgba(255,255,255,0.75);
  text-align: left;
}
.hm-products-all {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hm-products-all:hover { opacity: 0.65; }
.hm-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.hm-product-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.hm-product-card-top {
  padding: 1.25rem 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-height: 70px;
}
.hm-product-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: #555;
  border: 1px solid #bbb;
  border-radius: 999px;
  padding: 0.15rem 0.75rem;
}
.hm-product-name {
  font-size: 16px;
  font-weight: 400;
  color: #111;
  line-height: 1.4;
  text-align: center;
}
.hm-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm-product-image img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}
.hm-product-image--blue,
.hm-product-image--red,
.hm-product-image--orange,
.hm-product-image--green  { background: #ffffff; }
.hm-product-btn {
  display: block;
  margin: 0.2rem 100px 0;
  padding: 1rem 0;
  background: #1b2d55;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
  transition: background 0.2s;
}
.hm-product-btn:hover { background: #263f78; color: #fff; }
.hm-product-price {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  text-align: center;
  padding: 0.6rem 1.25rem 1.25rem;
}

/* Section 3: Bundle */
.hm-bundle {
  background: #ffffff;
}
.hm-bundle-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 7rem var(--site-px) 7rem;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
.hm-bundle-left {
  padding-top: 100px;
  flex: 1;
  min-width: 0;
}
.hm-bundle-label {
  font-size: 20px;
  font-weight: 300;
  color: #666;
  margin-bottom: 1rem;
}
.hm-bundle-title {
  font-size: 72px;
  font-weight: 400;
  line-height: 80px;
  color: #000;
  margin-bottom: 2rem;
}
.hm-bundle-body {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  color: #000;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hm-bundle-right {
  flex: 0 0 clamp(300px, 45%, 620px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hm-bundle-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ffffff;
  overflow: hidden;
}
.hm-bundle-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hm-bundle-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.hm-bundle-img-sm {
  aspect-ratio: 1;
  background: #ffffff;
  overflow: hidden;
}
.hm-bundle-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hm-bundle-img-placeholder {
  background: #ffffff;
}

/* Home responsive */
@media (max-width: 1099px) {
  .hm-products-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-products-header { grid-template-columns: 1fr; }
  .hm-products-header-left { grid-column: 1; }
  .hm-products-header-right { grid-column: 1; }
}
@media (max-width: 767px) {
  .hm-hero-inner { flex-direction: column; padding-top: 9.625rem; padding-bottom: 3rem; gap: 2rem; }
  .hm-hero-title { font-size: 32px; line-height: 56px; }
  .hm-hero-image { flex: none; width: 100%; justify-content: center; }
  .hm-products-inner { padding-top: 3rem; padding-bottom: 3rem; }
  .hm-products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hm-bundle-inner { flex-direction: column; padding-top: 4rem; padding-bottom: 4rem; gap: 2.5rem; }
  .hm-bundle-title { font-size: 48px; line-height: 56px; }
  .hm-bundle-right { flex: none; width: 100%; }
}

/* ── About page ── */

/* Hero */
.ab-hero {
  background: #ffffff;
}
.ab-hero-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 10rem var(--site-px) 6rem;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
.ab-hero-left {
  flex: 1;
  min-width: 0;
  padding-top: 2rem;
}
.ab-definition {
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  color: #111;
  margin-bottom: 2rem;
}
.ab-hero-title {
  font-size: clamp(58px, 4.8vw, 92px);
  font-weight: 400;
  line-height: clamp(64px, 5.2vw, 100px);
  color: #000;
  margin-bottom: 1.5rem;
}
.ab-hero-body {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  color: #000;
  max-width: 54rem;
}
.ab-hero-body p { margin-bottom: 1rem; }
.ab-hero-body p:last-child { margin-bottom: 0; }
.ab-hero-canvas-wrap {
  flex: 0 0 clamp(240px, 28.125vw, 540px);
  width: clamp(240px, 28.125vw, 540px);
  height: clamp(240px, 28.125vw, 540px);
  margin-top: 50px;
  margin-right: 50px;
}
.ab-hero-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Quote */
.ab-quote-section {
  background: #ffffff;
}
.ab-quote-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 5rem var(--site-px) 6rem;
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.ab-quote-line {
  height: 1px;
  background: #000;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.ab-quote-left {
  flex: 0 0 clamp(100px, 23vw, 380px);
  padding-right: 3rem;
  position: relative;
}
.ab-einstein-img {
  position: absolute;
  bottom: -45%;
  right: 12%;
  width: 55%;
  height: auto;
  mix-blend-mode: darken;
  opacity: 0.2;
  z-index: 0;
}
.ab-quote-name {
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
  color: #000;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.ab-quote-formula {
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
  color: #000;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.ab-quote-right { flex: 1; }
.ab-quote-body {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  color: #000;
  margin-bottom: 1rem;
}
.ab-quote-body:last-child { margin-bottom: 0; }

/* Pillars */
.ab-pillars-section {
  background: #ffffff;
}
.ab-pillars-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 5rem var(--site-px) 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 3rem;
}
.ab-pillar-icon {
  width: auto;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
}
.ab-pillar-line {
  height: 1.5px;
  background: #000;
  margin-bottom: 1.75rem;
}
.ab-pillar {
  padding: 0;
}
.ab-pillar-label {
  font-size: 30px;
  font-weight: 700;
  line-height: 55px;
  color: #000;
  margin-bottom: 0;
}
.ab-pillar-label strong { font-weight: 700; }
.ab-pillar-label span {
  font-weight: 300;
  color: #000;
  margin-left: 0.4rem;
}
.ab-pillar-body {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  color: #000;
}

/* Wide E section */
.ab-e-wide-section {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
}
.ab-e-wide-inner {
  padding: 5rem var(--site-px) 6rem;
  max-width: calc(900px + 120px);
}
.ab-e-wide-body {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  color: #000;
}

/* Responsive */
@media (max-width: 767px) {
  .ab-hero-inner { flex-direction: column; }
  .ab-hero-canvas-wrap { flex: none; width: 100%; height: 300px; order: -1; margin-right: 0; margin-top: 0; }
  .ab-quote-inner { flex-direction: column; }
  .ab-quote-left { flex: none; padding-right: 0; }
  .ab-pillars-inner { grid-template-columns: 1fr; }
  .ab-pillar { margin-bottom: 3rem; }
  .ab-quote-right .ab-quote-line { display: none; }

  /* ── Einstein image: 모바일 전용 ── */
  .ab-einstein-img {
    width: 40%;
    bottom: -20%;
    right: 0%;
  }
}

/* ── About page (legacy) ── */
.mc2-about-hero {
  border-bottom: 1px solid #e2e2e2;
  background: #ffffff;
}
.mc2-about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) { .mc2-about-hero-inner { padding: 8rem 1.5rem; } }
.mc2-about-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #111111;
  margin-bottom: 2rem;
}
.mc2-about-hero-title span { color: var(--accent); }

/* ── Hero: two-column layout with molecule canvas ── */
.mc2-hero-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.mc2-hero-text {
  flex: 1;
  min-width: 0;
}
.mc2-hero-canvas-wrap {
  flex: 0 0 420px;
  width: 420px;
  height: 420px;
}
.mc2-hero-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .mc2-hero-flex { flex-direction: column; }
  .mc2-hero-canvas-wrap { flex: none; width: 100%; height: 280px; }
}
.mc2-steps-row {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e2e2;
}
@media (min-width: 768px) { .mc2-steps-row { flex-direction: row; } }
.mc2-step-item {
  flex: 1;
  padding: 2rem;
  position: relative;
  border-right: 1px solid #e2e2e2;
}
.mc2-step-item:last-child { border-right: none; }
.mc2-step-num { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 1rem; }
.mc2-step-label { font-size: 1rem; font-weight: 900; color: #111111; }
.mc2-step-bar { width: 32px; height: 2px; background: var(--accent); margin-top: 1rem; }
.mc2-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e2e2e2;
}
@media (max-width: 640px) { .mc2-services-grid { grid-template-columns: 1fr; } }
.mc2-service-item { background: #ffffff; padding: 2rem; }
.mc2-service-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.mc2-tags-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mc2-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid #e2e2e2;
  color: #111111;
  background: #ffffff;
}
.mc2-principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #e2e2e2;
}
@media (min-width: 768px) { .mc2-principles-grid { grid-template-columns: repeat(3, 1fr); } }
.mc2-principle-item { background: #ffffff; padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.mc2-principle-num { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--accent); }
.mc2-principle-title { font-size: 1.25rem; font-weight: 900; color: #111111; }
.mc2-principle-en { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: #9ca3af; }
.mc2-principle-bar { width: 32px; height: 2px; background: var(--accent); }
.mc2-principle-lines { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.mc2-principle-line { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 14px; color: #4b5563; }
.mc2-principle-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 6px; }
.mc2-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e2e2e2;
}
@media (min-width: 768px) { .mc2-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.mc2-stat-item { background: #ffffff; padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mc2-stat-value { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--accent); line-height: 1; }
.mc2-stat-label { font-size: 12px; font-weight: 500; color: #9ca3af; }

/* ── About CTA ── */
.mc2-about-cta { background: var(--accent); }
.mc2-about-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .mc2-about-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.mc2-about-cta-btns { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .mc2-about-cta-btns { flex-direction: row; } }

/* ── Shop page ── */
.mc2-shop-wrapper { display: flex; }
.mc2-shop-header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}
@media (min-width: 768px) { .mc2-shop-header-mobile { display: none; } }
.mc2-sidebar {
  display: none;
  width: 280px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  background: #ffffff;
}
@media (min-width: 768px) {
  .mc2-sidebar {
    display: block;
  }
}
.mc2-sidebar.open { display: block; width: 100%; }
.mc2-sidebar-inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 2rem; }
.mc2-sidebar-label { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.mc2-search-input {
  width: 100%;
  padding: 0.625rem 1rem 0.625rem 2.25rem;
  border-radius: 9999px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.mc2-search-input:focus { border-color: var(--accent); }
.mc2-search-wrap { position: relative; }
.mc2-search-icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); pointer-events: none; }
.mc2-filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mc2-filter-pill {
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.mc2-filter-pill:hover { border-color: var(--accent); }
.mc2-filter-pill.active { border-color: var(--accent); color: var(--accent); font-weight: 600; }
.mc2-shop-main { flex: 1; padding: 1.5rem; min-width: 0; }
@media (min-width: 768px) { .mc2-shop-main { padding: 2rem; } }
.mc2-shop-page-header { display: none; margin-bottom: 2rem; }
@media (min-width: 768px) { .mc2-shop-page-header { display: block; } }
.mc2-shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .mc2-shop-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mc2-shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .mc2-shop-grid { grid-template-columns: repeat(4, 1fr); } }
.mc2-shop-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.mc2-shop-card:hover { border-color: rgba(26,122,122,0.4); }
.mc2-shop-card-img {
  aspect-ratio: 1;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mc2-shop-card-img img { width: 100%; height: 100%; object-fit: cover; }
.mc2-shop-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}
.mc2-badge-best { background: var(--accent); color: #ffffff; }
.mc2-badge-featured { background: var(--text); color: #ffffff; }
.mc2-badge-new { background: rgba(26,122,122,0.15); color: var(--accent); border: 1px solid rgba(26,122,122,0.4); }
.mc2-shop-card-body { padding: 1rem; flex: 1; }
.mc2-shop-card-cat { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.25rem; }
.mc2-shop-card-name { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 0.25rem; }
.mc2-shop-card-desc { font-size: 11px; color: var(--text-dim); line-height: 1.6; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mc2-shop-card-tags { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 0.75rem; }
.mc2-shop-card-tag { font-size: 9px; padding: 0.125rem 0.5rem; border-radius: 9999px; border: 1px solid var(--border); color: var(--text-dim); }
.mc2-shop-card-price { font-size: 1rem; font-weight: 900; color: var(--accent); }
.mc2-shop-card-footer { padding: 0 1rem 1rem; }
.mc2-add-to-cart {
  width: 100%;
  padding: 0.625rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 2px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.mc2-add-to-cart:hover { border-color: var(--accent); background: var(--accent); color: #ffffff; }

/* ── Projects page ── */
.mc2-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 640px) { .mc2-projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mc2-projects-grid { grid-template-columns: repeat(3, 1fr); } }
.mc2-project-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  overflow: hidden;
}
.mc2-project-card:hover { background: var(--surface); }
.mc2-project-img {
  width: 100%;
  height: 400px;
  background: #ffffff;
  background-image: radial-gradient(circle, rgba(26,122,122,0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.mc2-project-img-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: rgba(26,122,122,0.6); text-transform: uppercase; }
.mc2-project-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.mc2-project-status { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.mc2-status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.mc2-status-dot.ongoing { background: var(--accent); }
.mc2-status-dot.completed, .mc2-status-dot.upcoming { background: var(--text-dim); }
.mc2-status-text { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; }
.mc2-status-text.ongoing { color: var(--accent); }
.mc2-status-text.completed, .mc2-status-text.upcoming { color: var(--text-dim); }
.mc2-project-year { font-size: 9px; color: var(--text-dim); margin-left: auto; }
.mc2-project-title { font-size: 1.25rem; font-weight: 900; color: var(--text); line-height: 1.2; margin-bottom: 0.25rem; }
.mc2-project-subtitle { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.75rem; }
.mc2-project-desc { font-size: 12px; color: var(--text-dim); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.mc2-project-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.mc2-project-tag { font-size: 9px; letter-spacing: 0.05em; padding: 0.125rem 0.625rem; border-radius: 9999px; border: 1px solid #e0e0e0; color: var(--text-dim); }

/* ── Single product (WooCommerce override) ── */
.mc2-single-product { padding-top: 90px; min-height: 100vh; background: #ffffff; }
.mc2-breadcrumb {
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-dim);
}
.mc2-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mc2-breadcrumb a { transition: color 0.2s; }
.mc2-breadcrumb a:hover { color: var(--accent); }
.mc2-product-detail-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 0px solid var(--border);
}
@media (min-width: 1024px) { .mc2-product-detail-grid { grid-template-columns: 1.1fr 1fr; } }
.mc2-product-gallery { border-right: 0px solid var(--border); }
.mc2-gallery-main {
  background: #ffffff;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.mc2-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.mc2-gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: #ffffff;
}
.mc2-gallery-thumbs { display: flex; gap: 0.5rem; }
.mc2-gallery-thumb {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.mc2-gallery-thumb:hover, .mc2-gallery-thumb.active { border-color: var(--accent); }
.mc2-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mc2-product-info { padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.mc2-product-detail-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.mc2-product-detail-price { font-size: 1.5rem; font-weight: 900; color: var(--accent); }
.mc2-product-detail-desc { font-size:  1.1rem; color: var(--text-muted); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.mc2-product-meta { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.mc2-product-meta-label { font-size: 1rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.5rem; }
.mc2-product-meta-value { font-size: 1rem; font-weight: 600; color: var(--text); }
.mc2-primary-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mc2-primary-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: 9999px; background: var(--accent); color: #ffffff; }
.mc2-secondary-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mc2-secondary-tag { font-size: 0.7rem; letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: 9999px; border: 1px solid var(--border); color: var(--text-dim); }
.mc2-buy-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}
.mc2-buy-btn:hover { background: var(--accent-hover); color: #fff; }

/* ── Footer ── */
/* ══════════════════════════════════════════
   FOOTER — Figma node 473:978
   ══════════════════════════════════════════ */
.mc2-footer {
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

/* projects 페이지 — 푸터가 플레이스홀더 카드 위로 올라와서 자연스럽게 덮음 */
.page-template-page-projects .mc2-footer {
  position: relative;
  z-index: 10;
  margin-top: -70px;
}

.mc2-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px 16px 60px;
  display: grid;
  grid-template-columns: 243px 461px 466px auto;
  align-items: start;
  box-sizing: border-box;
}

/* Col 1: Logo */
.mc2-ft-logo { display: block; height: 20px; width: auto; }

/* Col 2: Brand */
.mc2-ft-brand-en {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #111;
  text-transform: uppercase;
  margin: 0 0 11px;
}
.mc2-ft-brand-kr {
  font-size: 18px;
  color: #111;
  margin: 0 0 44px;
}
.mc2-ft-hour {
  font-size: 14px;
  color: #777;
  margin: 0 0 8px;
  line-height: normal;
}
.mc2-ft-hour strong { font-weight: 700; }

/* Col 3: Company info */
.mc2-ft-company-name {
  font-size: 18px;
  color: #777;
  margin: 0 0 23px;
  line-height: normal;
}
.mc2-ft-company-info {
  font-size: 14px;
  color: #777;
  margin: 0 0 11px;
  line-height: normal;
}

/* Col 4: Social icons */
.mc2-ft-social-col {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.mc2-ft-social {
  width: 70px;
  height: 70px;
  background: #ebebeb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.mc2-ft-social { color: #999; }
.mc2-ft-social:hover { background: #111111; color: #fff; }

/* Bottom bar */
.mc2-ft-bottom {
  background: #f5f5f5;
  height: 50px;
  display: flex;
  align-items: center;
}
.mc2-ft-copy {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  font-size: 14px;
  color: #777;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  box-sizing: border-box;
}

/* ── Utility ── */
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-14 { margin-bottom: 3.5rem; }
.text-sm-muted { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .mc2-nav,
  .mc2-nav.scrolled { border-bottom: none !important; box-shadow: none !important; }
  /* 홈·프로젝트·샵 등 투명 상단에서만 라인 숨김 — 스크롤 후 라인 표시 */
  .home .mc2-nav:not(.scrolled):not(.menu-open)::after,
  .page-template-page-home_test .mc2-nav:not(.scrolled):not(.menu-open)::after,
  .page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open)::after,
  .mc2-shop-page .mc2-nav:not(.scrolled):not(.menu-open)::after { display: none; }
  .home .mc2-nav:not(.scrolled):not(.menu-open),
  .page-template-page-home_test .mc2-nav:not(.scrolled):not(.menu-open) {
    background: transparent !important;
    border-bottom: none !important;
  }
  .mc2-products-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 768px) {
  .mc2-footer-inner {
    grid-template-columns: 1fr;
    padding: 36px 20px 40px;
    gap: 28px;
  }
  .mc2-ft-logo { height: 18px; }
  .mc2-ft-brand-en { font-size: 18px; }
  .mc2-ft-brand-kr { font-size: 14px; margin-bottom: 20px; }
  .mc2-ft-company-name { font-size: 14px; margin-bottom: 12px; }
  .mc2-ft-social-col { justify-content: flex-start; }
  .mc2-ft-social { width: 44px; height: 44px; }
}

/* ══════════════════════════════════════════
   ── Sidebar filter layout (projects + shop)
   ══════════════════════════════════════════ */

/* Page wrapper */
.mc2-page {
  padding-top: 90px; /* nav height */
  min-height: 100vh;
}

/* Mobile top bar */
.mc2-mobile-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .mc2-mobile-top-bar { display: none; } }

.mc2-mobile-top-bar-left { display: flex; flex-direction: column; gap: 0.125rem; }
.mc2-mobile-title { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.02em; }

.mc2-eyebrow-sm {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.mc2-filter-toggle-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.mc2-filter-toggle-btn:hover { border-color: var(--accent); color: var(--accent); }
.mc2-filter-toggle-btn.active { border-color: var(--accent); color: var(--accent); }

/* Layout: sidebar + main */
.mc2-layout-sidebar {
  display: flex;
  align-items: flex-start;
  min-height: calc(100vh - 56px);
}

/* Sidebar */
.mc2-filter-sidebar {
  width: 280px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  min-height: calc(100vh - 56px);
  position: sticky;
  top: 56px;
  overflow-y: auto;
  background: #ffffff;
  /* mobile: hidden by default */
  display: none;
}
@media (min-width: 768px) { .mc2-filter-sidebar { display: block; } }
.mc2-filter-sidebar.open { display: block; }

.mc2-filter-sidebar-inner {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Filter group */
.mc2-filter-group { display: flex; flex-direction: column; gap: 0.625rem; }
.mc2-filter-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Search box */
.mc2-search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.mc2-search-box-icon {
  position: absolute;
  left: 0.625rem;
  pointer-events: none;
  flex-shrink: 0;
}
.mc2-search-box-input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}
.mc2-search-box-input::placeholder { color: var(--text-dim); }
.mc2-search-box-input:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(26,122,122,0.12); }

/* Pills */
.mc2-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.mc2-pill {
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  line-height: 1.6;
}
.mc2-pill:hover { border-color: var(--accent); color: var(--accent); }
.mc2-pill.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(26,122,122,0.06);
  font-weight: 700;
}

/* Clear button */
.mc2-clear-btn {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.mc2-clear-btn:hover { color: var(--accent); }

/* Main content */
.mc2-filter-main {
  flex: 1;
  min-width: 0;
  padding: 2rem 1.5rem 4rem;
}

/* Desktop page header */
.mc2-page-header-desktop { display: none; margin-bottom: 2rem; }
@media (min-width: 768px) { .mc2-page-header-desktop { display: block; } }

.mc2-page-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0.25rem 0;
}
.mc2-page-subtitle { font-size: 13px; color: var(--text-dim); margin-top: 0.25rem; }

/* Result count */
.mc2-result-count {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

/* Empty state */
.mc2-empty-state {
  padding: 4rem 1rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Status dot/label on project cards */
.mc2-project-status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}
.mc2-status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.mc2-status-dot.mc2-status-ongoing   { background: var(--accent); }
.mc2-status-dot.mc2-status-completed { background: var(--text-dim); }
.mc2-status-dot.mc2-status-upcoming  { background: var(--border-light); }
.mc2-status-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.mc2-status-label.mc2-status-ongoing   { color: var(--accent); }
.mc2-status-label.mc2-status-completed { color: var(--text-dim); }
.mc2-status-label.mc2-status-upcoming  { color: var(--text-dim); }
.mc2-project-year { font-size: 9px; color: var(--text-dim); margin-left: auto; }

/* Project pill tags (inside cards) */
.mc2-project-tags-row { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: auto; padding-top: 1rem; }
.mc2-pill-tag {
  font-size: 9px;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid #e0e0e0;
  color: var(--text-dim);
}

/* Mobile: sidebar open pushes content down on small screens */
@media (max-width: 767px) {
  .mc2-layout-sidebar { flex-direction: column; }
  .mc2-filter-sidebar {
    width: 100%;
    min-height: 0;
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .mc2-filter-main { padding: 1.25rem 1rem 3rem; }
}

/* ══════════════════════════════════════════
   ── WooCommerce custom overrides
   (WC default styles are disabled via filter)
   ══════════════════════════════════════════ */

/* Font */
.woocommerce,
.woocommerce-page,
.woocommerce *,
.woocommerce-page * {
  font-family: 'Poppins', "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* Price */
.woocommerce .price,
.woocommerce .price .amount,
.woocommerce-page .price,
.woocommerce-page .price .amount,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #1B2E4B !important;
  font-weight: 900 !important;
}

/* Add to cart buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.add_to_cart_button,
.woocommerce ul.products li.product .button {
  background-color: #1B2E4B !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0px !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  transition: background-color 0.2s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.add_to_cart_button:hover,
.woocommerce ul.products li.product .button:hover {
  background-color: #2E6DA4 !important;
  color: #ffffff !important;
}

/* Single product add-to-cart */
.single_add_to_cart_button,
.woocommerce div.product .single_add_to_cart_button {
  background-color: #1B2E4B !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}
.single_add_to_cart_button:hover,
.woocommerce div.product .single_add_to_cart_button:hover {
  background-color: #2E6DA4 !important;
}

/* Cart page — 배경 흰색, 하단 여백 제거 */
body.woocommerce-cart,
body.woocommerce-cart html {
  background: #ffffff !important;
  background-color: #ffffff !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
body.woocommerce-cart .mc2-footer,
body.woocommerce-cart footer {
  background: #ffffff !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
body.woocommerce-cart .mc2-ft-bottom {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
body.woocommerce-cart .mc2-nav,
body.woocommerce-cart .mc2-nav.scrolled {
  background: #ffffff !important;
}

/* Checkout / cart buttons */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
#place_order,
.woocommerce #payment #place_order {
  background-color: #1B2E4B !important;
  color: #ffffff !important;
  border-radius: 2px !important;
  font-family: inherit !important;
  font-weight: 700 !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
#place_order:hover {
  background-color: #2E6DA4 !important;
}

/* Product grid */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
@media (min-width: 768px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 1200px) {
  .woocommerce ul.products { grid-template-columns: repeat(4, 1fr) !important; }
}
.woocommerce ul.products li.product {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.woocommerce ul.products li.product:hover { border-color: rgba(26,122,122,0.4); }

/* Product image */
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0;
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  padding: 0 1rem !important;
  margin: 0.75rem 0 0.25rem !important;
}

/* Product price in loop */
.woocommerce ul.products li.product .price {
  padding: 0 1rem !important;
  margin-bottom: 0.5rem !important;
}

/* Add to cart button margin */
.woocommerce ul.products li.product .button {
  margin: 0 1rem 1rem !important;
  width: calc(100% - 2rem) !important;
  display: block !important;
  text-align: center !important;
  padding: 0.625rem 1rem !important;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale {
  background: #1B2E4B;
  color: #ffffff;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  min-height: 0;
  min-width: 0;
  padding: 0.25rem 0.5rem;
  line-height: 1.4;
}

/* Remove default sidebar */
.woocommerce-sidebar,
.widget_product_categories,
.widget_layered_nav,
.widget_price_filter {
  display: none !important;
}
.woocommerce-page .site-main { width: 100%; float: none; }

/* Breadcrumb */
.woocommerce .woocommerce-breadcrumb { font-size: 11px; color: #9ca3af; margin-bottom: 1.5rem; }
.woocommerce .woocommerce-breadcrumb a { color: #9ca3af; }
.woocommerce .woocommerce-breadcrumb a:hover { color: #1B2E4B; }

/* Result count & ordering */
.woocommerce .woocommerce-result-count { font-size: 12px; color: #9ca3af; }
.woocommerce .woocommerce-ordering select {
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  font-family: inherit;
  font-size: 12px;
  padding: 0.375rem 0.75rem;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { color: #1B2E4B; border-color: #e2e2e2; }
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { background: #1B2E4B; color: #ffffff; border-color: #1B2E4B; }

/* Stars */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before { color: #1B2E4B; }

/* Notices */
.woocommerce-message, .woocommerce-info { border-top-color: #1B2E4B !important; }
.woocommerce-message::before, .woocommerce-info::before { color: #1B2E4B !important; }

/* Forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  font-family: inherit;
  padding: 0.625rem 0.75rem;
  font-size: 14px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: #1B2E4B;
  outline: none;
  box-shadow: 0 0 0 2px rgba(26,122,122,0.15);
}

/* Single product layout */
.woocommerce div.product { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
@media (min-width: 768px) { .woocommerce div.product { grid-template-columns: 1fr 1fr; } }
.woocommerce div.product p.price,
.woocommerce div.product span.price { font-size: 1.5rem !important; font-weight: 900 !important; }

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { color: #1B2E4B !important; border-bottom-color: #1B2E4B !important; }

/* Wrapper */
.mc2-woo-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  padding-top: calc(90px + 2rem);
}

/* ══════════════════════════════════════════════════════
   SFP — Sidebar Filter Pages  (shop + projects)
   ══════════════════════════════════════════════════════ */

/* Page shell */
/* ═══════════════════════════════════════════════════════
   SHOP PAGE (sfp-*) — matches Projects page design
   ═══════════════════════════════════════════════════════ */

.sfp-page {
  display: block;
  width: 100%;
  font-family: 'Poppins','Pretendard Variable','Pretendard',-apple-system,sans-serif;
  padding-top: 50px;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

/* Mobile bar — hidden on desktop */
.sfp-mobile-bar { display: none; }
.sfp-mobile-title { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; margin-top: 2px; }

/* Toggle button */
.sfp-toggle-btn {
  font-size: 11px;
  font-weight: 700;
  color: #111;
  border: 1px solid #111;
  padding: 0.35rem 0.875rem;
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.sfp-toggle-btn:hover { border-color: #1B2E4B; color: #1B2E4B; }

/* Header */
.sfp-header {
  width: 100%;
  text-align: center;
  padding: 150px 20px 60px;
  box-sizing: border-box;
}
.sfp-eyebrow {
  color: #1B2E4B;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sfp-page-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.2;
}
.sfp-page-sub {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  margin: 0 0 8px;
}
.sfp-count { font-size: 13px; color: #999; margin: 0; }
.sfp-pill-count { display: none; }

/* Layout row */
.sfp-layout {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Sidebar */
.sfp-sidebar {
  width: clamp(200px, 26vw, 408px);
  min-width: 200px;
  flex-shrink: 0;
  border-right: 1px solid #111;
  padding: 0 clamp(12px, 2vw, 28px) 3rem 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sfp-sidebar.open { display: flex; }

/* Clear button */
.sfp-clear-btn {
  display: none;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  color: #1B2E4B;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.sfp-clear-btn:hover { color: #1d8a8a; }

/* Sections */
.sfp-section { margin-bottom: 1.5rem; }
.sfp-section:last-of-type { margin-bottom: 0; }
.sfp-section-title {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Search */
.sfp-search-wrap { position: relative; margin-bottom: 24px; }
.sfp-search-ico {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.sfp-search-input {
  width: 100%;
  padding: 7px 12px 7px 32px;
  border: 1px solid #111;
  border-radius: 0;
  font-size: 12px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.sfp-search-input::placeholder { color: #111; }
.sfp-search-input:focus { border-color: #1B2E4B; }

/* Pills */
.sfp-pills { display: flex; flex-wrap: wrap; gap: 4px; }
.sfp-pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #111;
  border-radius: 20px;
  padding: clamp(3px, 0.4vw, 5px) clamp(7px, 0.8vw, 10px);
  font-size: clamp(10px, 0.85vw, 11px);
  font-weight: 500;
  color: #111;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
  transition: border-color .15s, color .15s, background .15s;
}
.sfp-pill:hover,
.sfp-pill.active {
  background: #1B2E4B;
  color: #fff;
  border-color: #1B2E4B;
  font-weight: 600;
}

/* Main area */
.sfp-main { flex: 1; min-width: 0; box-sizing: border-box; }
.sfp-page-header { display: none !important; }

/* Empty state */
.sfp-empty {
  padding: 4rem 1rem;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Grid */
.sfp-grid {
  display: grid;
  grid-template-columns: repeat(3, min(408px, calc((100% - 64px) / 3)));
  gap: 24px 24px;
  justify-content: start;
  padding: 0 0 4rem 2vw;
  box-sizing: border-box;
  align-content: start;
}

/* Card */
.sfp-card {
  background: #ffffff;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* Card image */
.sfp-card-img-link { display: block; text-decoration: none; }
.sfp-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 408 / 306;
  background: #fff;
  overflow: hidden;
  display: flex;
  border-bottom: 1px solid #111;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sfp-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sfp-card:hover .sfp-card-img img { transform: scale(1.03); }
.sfp-card-img-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(26,122,122,0.4);
  text-transform: uppercase;
}
.sfp-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 0;
}
.sfp-badge-best     { background: #1B2E4B; color: #fff; }
.sfp-badge-featured { background: #111; color: #fff; }
.sfp-badge-new      { background: rgba(26,122,122,0.12); color: #1B2E4B; border: 1px solid rgba(26,122,122,0.35); }
.sfp-card-soldout {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.1em;
}

/* Card body */
.sfp-card-body { padding: 14px 16px 0; display: flex; flex-direction: column; flex: 1; }
.sfp-card-cat {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.sfp-card-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin-bottom: 6px;
  text-decoration: none;
}
.sfp-card-name:hover { color: #1B2E4B; }
.sfp-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sfp-card-tag-row { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.sfp-card-tag {
  border: 1px solid #111;
  border-radius: 20px;
  padding: 1.5px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #111;
  background: #fff;
  white-space: nowrap;
}
.sfp-card-price { font-size: 18px; font-weight: 700; color: #111; }

/* Card footer */
.sfp-card-footer { padding: 10px 0 0; }
.sfp-cart-btn {
  width: 100%;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0;
  background: #1B2E4B;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.sfp-cart-btn:hover { background: #1d8a8a; }
.sfp-cart-btn--soldout { background: #f5f5f5; color: #9ca3af; cursor: not-allowed; }
.sfp-cart-btn--soldout:hover { background: #f5f5f5; }

/* ── TABLET < 1100px — sidebar stays, 2 cols ── */
@media (max-width: 1099px) {
  .sfp-page { padding-left: 32px; padding-right: 32px; }
  .sfp-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 0 1rem 24px !important;
    gap: 32px 20px !important;
  }
  .sfp-card { padding-bottom: 32px; }
}

/* ── MOBILE < 768px — sidebar toggle, 1 col ── */
@media (max-width: 767px) {
  .sfp-page { padding-left: 20px; padding-right: 20px; }

  /* Mobile bar — projects 스타일과 동일 */
  .sfp-mobile-bar {
    display: block;
    margin-bottom: 16px;
  }
  .sfp-mobile-search {
    position: relative;
    margin-bottom: 8px;
  }
  .sfp-mobile-search input {
    width: 100%;
    padding: 9px 12px 9px 36px;
    border: 1px solid #111;
    border-radius: 0;
    font-size: 13px;
    font-family: inherit;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    box-sizing: border-box;
  }
  .sfp-mobile-search input::placeholder { color: #111; }
  .sfp-mobile-search svg {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .sfp-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #111;
    background: #fff;
    font-size: 12px;
    font-family: inherit;
    color: #111;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 0;
  }
  .sfp-toggle-arrow { transition: transform 0.2s ease; }
  .sfp-mobile-toggle.open .sfp-toggle-arrow { transform: rotate(180deg); }

  /* Header 숨김 */
  .sfp-header { display: none; }

  .sfp-sidebar {
    display: none;
    width: 100%;
    min-width: 0;
    border-right: none;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0 1.5rem;
    margin-bottom: 8px;
  }
  .sfp-sidebar.open { display: block; }
  .sfp-layout { flex-direction: column; }
  .sfp-grid {
    grid-template-columns: 1fr !important;
    padding: 0 0 3rem !important;
    gap: 20px !important;
  }
  .sfp-card { padding-bottom: 32px; border: 1px solid #111; }
  .sfp-pill { font-size: 11px !important; padding: 3px 8px !important; }
}

/* ── Projects grid ── */
.sfp-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
}
@media (min-width: 640px)  { .sfp-projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sfp-projects-grid { grid-template-columns: repeat(3, 1fr); } }

/* Project card */
.sfp-proj-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
}
.sfp-proj-card:hover { background: #f9f9f9; }

.sfp-proj-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: #ffffff;
  background-image: radial-gradient(circle, rgba(26,122,122,0.15) 1px, transparent 1px);
  background-size: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sfp-proj-img-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(26,122,122,0.5);
  text-transform: uppercase;
}

.sfp-proj-body { padding: 1.25rem 1.375rem 1.5rem; flex: 1; display: flex; flex-direction: column; }

.sfp-proj-meta-row { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.sfp-proj-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sfp-proj-dot--completed { background: #9ca3af; }
.sfp-proj-dot--upcoming  { background: #d1d5db; }
.sfp-proj-dot--ongoing   { background: #1B2E4B; }
.sfp-proj-status { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; }
.sfp-proj-status--completed { color: #9ca3af; }
.sfp-proj-status--upcoming  { color: #9ca3af; }
.sfp-proj-status--ongoing   { color: #1B2E4B; }
.sfp-proj-year { font-size: 9px; color: #9ca3af; margin-left: auto; }

.sfp-proj-title {
  font-size: 1.0625rem;
  font-weight: 900;
  color: #111;
  line-height: 1.25;
  margin-bottom: 3px;
}
.sfp-proj-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1B2E4B;
  margin-bottom: 8px;
}
.sfp-proj-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.sfp-proj-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }
.sfp-pill-tag {
  font-size: 9px;
  padding: 2px 9px;
  border-radius: 0;
  border: 1px solid #e0e0e0;
  color: #9ca3af;
}
.sfp-pill-tag--tech {
  border-color: rgba(26,122,122,0.3);
  color: #1B2E4B;
  background: rgba(26,122,122,0.04);
}

/* ── Mobile adjustments ── */
@media (max-width: 767px) {
  .sfp-layout { flex-direction: column; }
  .sfp-sidebar {
    width: 100%;
    min-height: 0;
    position: static;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .sfp-main { padding: 1.25rem 0rem 0rem; }
  .sfp-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* ── 수량 버튼 스타일 ── */

/* Hide the native WooCommerce number input once we've wrapped it */
.quantity input[type=number] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

/* Wrapper that holds − display + */
.quantity-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  width: fit-content;
  background: #fff;
}

/* − and + buttons */
.qty-btn {
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #1a1a1a;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
  -webkit-user-select: none;
  user-select: none;
}
.qty-btn:hover  { background: #f5f5f5; }
.qty-btn:active { background: #ebebeb; }
.qty-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
  background: #fff;
}

/* Numeric display between buttons */
.qty-display {
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: inherit;
  background: #fff;
  flex-shrink: 0;
}

/* WooCommerce wraps input inside .quantity — make it flex so wrapper sits inline */
.quantity {
  display: inline-flex;
  align-items: center;
  position: relative;
}

/* ── Archive product card image fill ── */
.sfp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Pill count badge ── */
.sfp-pill-count {
  font-size: 10px;
  color: #111;
  margin-left: 2px;
}
.sfp-pill.active . { color: rgba(26,122,122,0.7); }

/* ── Archive bar (count + ordering row) ── */
.sfp-archive-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

/* ── WooCommerce price inside sfp-card-price ── */
.sfp-card-price .woocommerce-Price-amount,
.sfp-card-price .amount {
  color: #1B2E4B !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
}
.sfp-card-price ins { text-decoration: none; }
.sfp-card-price del { color: #9ca3af; font-size: 0.8rem; }

/* ══════════════════════════════════════════
   ── Project cards (page-projects.php)
   ══════════════════════════════════════════ */

/* Grid: 3 columns, collapses on smaller screens */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .proj-grid { grid-template-columns: 1fr; } }

/* Card */
.proj-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.proj-card:hover {
  border-color: rgba(26,122,122,0.4);
  box-shadow: 0 2px 12px rgba(26,122,122,0.08);
}

/* Thumbnail */
.proj-card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ffffff;
  flex-shrink: 0;
}
.proj-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.proj-card:hover .proj-card-thumb img { transform: scale(1.03); }

/* Placeholder thumbnail */
.proj-card-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  background-image: radial-gradient(circle, rgba(26,122,122,0.14) 1px, transparent 1px);
  background-size: 20px 20px;
  text-decoration: none;
}
.proj-card-thumb--placeholder span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(26,122,122,0.45);
  text-transform: uppercase;
}

/* Body */
.proj-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta row: category + year */
.proj-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.proj-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1B2E4B;
}
.proj-card-year {
  font-size: 10px;
  color: #9ca3af;
}

/* Title */
.proj-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  line-height: 1.35;
  margin-bottom: 8px;
}
.proj-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.proj-card-title a:hover { color: #1B2E4B; }

/* Excerpt */
.proj-card-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tag badges */
.proj-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.proj-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(26,122,122,0.08);
  color: #1B2E4B;
  border: 1px solid rgba(26,122,122,0.25);
}

/* ── 상품 카드 ADD TO CART 버튼 ── */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.add_to_cart_button {
  display: block !important;
  width: 100% !important;
  height: 44px !important;
  line-height: 44px !important;
  padding: 0 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-align: center !important;
  background-color: #1B2E4B !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-family: inherit !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  transition: background-color 0.2s !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover,
.add_to_cart_button:hover {
  background-color: #2E6DA4 !important;
  color: #ffffff !important;
}

/* ── Add to cart 버튼 크기 수정 (single product) ── */
.single_add_to_cart_button,
button.single_add_to_cart_button,
.woocommerce button.single_add_to_cart_button,
.woocommerce-page button.single_add_to_cart_button {
  height: 50px !important;
  padding: 0 40px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  background-color: #1B2E4B !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
  font-family: inherit !important;
  letter-spacing: 0.04em !important;
  transition: background-color 0.2s !important;
}
.single_add_to_cart_button:hover,
button.single_add_to_cart_button:hover,
.woocommerce button.single_add_to_cart_button:hover {
  background-color: #2E6DA4 !important;
}

/* ── 수량 버튼을 Add to cart와 동일한 높이로 ── */
.woocommerce .quantity,
.quantity-wrapper {
  height: 50px !important;
}

.qty-btn {
  height: 50px !important;
  width: 50px !important;
}

.qty-display {
  height: 50px !important;
}

/* ── 수량 + Add to cart 버튼 나란히 배치 ── */
.woocommerce form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

header, 
nav, 
.mc2-nav-inner, 
[class*="nav"] {
    border-bottom: none !important;
    box-shadow: none !important; /* 선처럼 보이는 그림자일 수도 있음 */
}

/* ── 페이지별 영문 대문자 ── */
.home .hmt-sec *,
.page-template-page-about .abt-page *,
.page-template-page-projects .p2-wrap * {
  text-transform: uppercase !important;
}

/* ── Projects 페이지 — 히어로 위 네비바 투명 오버레이 ── */
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) {
  background: transparent;
}
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open)::after {
  display: none;
}
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-logo {
  color: #fff;
}
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-link:hover,
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-link.active {
  color: #fff;
  font-weight: 500;
  opacity: 1;
}
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-dropdown-arrow path {
  stroke: rgba(255,255,255,0.8);
}
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-signin svg {
  stroke: #fff;
}
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-cart-pill svg {
  stroke: #fff;
}
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-hamburger {
  color: #fff;
}
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-mob-cart svg,
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-mob-signin svg {
  stroke: #fff;
}
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-mob-cart,
.page-template-page-projects .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-mob-signin {
  color: #fff;
}

/* ── Shop 페이지 — 히어로 위 네비바 투명 오버레이 ── */
.mc2-shop-page .mc2-nav:not(.scrolled):not(.menu-open) {
  background: transparent;
}
.mc2-shop-page .mc2-nav:not(.scrolled):not(.menu-open)::after {
  display: none;
}
.mc2-shop-page .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-logo {
  color: #fff;
}
.mc2-shop-page .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}
.mc2-shop-page .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-link:hover,
.mc2-shop-page .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-link.active {
  color: #fff;
  font-weight: 500;
  opacity: 1;
}
.mc2-shop-page .mc2-nav:not(.scrolled):not(.menu-open) .mc2-dropdown-arrow path {
  stroke: rgba(255,255,255,0.8);
}
.mc2-shop-page .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-signin svg {
  stroke: #fff;
}
.mc2-shop-page .mc2-nav:not(.scrolled):not(.menu-open) .mc2-nav-cart-pill svg {
  stroke: #fff;
}
