/** Shopify CDN: Minification failed

Line 319:23 Expected ":"

**/
/* ── OVERLAY ── */
.fcd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2147483647;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.fcd-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ── DRAWER ── */
.fcd-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100dvh;
  background: #fff;
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  font-family: inherit;
  overflow-x: hidden;
}
.fcd-drawer.is-open {
  transform: translateX(0);
}
@media (max-width: 480px) {
  .fcd-drawer {
    width: 100%;
    overflow-x: hidden;
    height: 100dvh;
  }
  .fcd-footer {
    padding-bottom: calc(4px + env(safe-area-inset-bottom));
  }
}

/* ── HEADER ── */
.fcd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #f0ece6;
  flex-shrink: 0;
}
.fcd-header__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0;
}
.fcd-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fcd-login-btn {
  background: #3FCF9D;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.fcd-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
}

/* ── FREE SHIPPING BAR ── */
.fcd-shipping-bar {
  padding: 8px 20px;
  background: #f9f7f4;
  border-bottom: 1px solid #f0ece6;
  flex-shrink: 0;
}
.fcd-shipping-bar__track {
  height: 4px;
  background: #e8e4de;
  border-radius: 2px;
  margin-bottom: 6px;
  overflow: hidden;
}
.fcd-shipping-bar__fill {
  height: 100%;
  background: #3FCF9D;
  border-radius: 2px;
  transition: width 0.4s ease;
}
.fcd-shipping-bar__text {
  font-size: 12px;
  color: #5a5043;
  text-align: center;
}
.fcd-shipping-bar__text strong {
  color: #3FCF9D;
}

/* ── BODY ── */
.fcd-body {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

/* ── EMPTY STATE ── */
.fcd-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 20px;
  text-align: center;
  color: #6b6b6b;
}
.fcd-empty p {
  font-size: 15px;
  margin: 0 0 16px;
}
.fcd-empty a {
  background: #3FCF9D;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* ── LINE ITEMS ── */
.fcd-items {
  padding: 4px 0;
}
.fcd-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid #f5f2ed;
}
.fcd-item__img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
  background: #f5f2ed;
  display: block;
}
.fcd-item__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.fcd-item__title {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fcd-item__variant {
  font-size: 12px;
  color: #6b6b6b;
}
.fcd-item__subscription {
  font-size: 12px;
  color: #3FCF9D;
}
.fcd-item__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.fcd-item__price-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.fcd-item__price {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.fcd-item__compare {
  font-size: 12px;
  color: #6b6b6b;
  text-decoration: line-through;
  margin-left: 4px;
}
.fcd-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e0dbd4;
  border-radius: 4px;
  overflow: hidden;
}
.fcd-item__qty-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.fcd-item__qty-btn:hover { background: #f5f2ed; }
.fcd-item__qty-num {
  width: 32px;
  text-align: center;
  font-size: 13px;
  color: #1a1a1a;
  border: none;
  background: none;
  pointer-events: none;
}
.fcd-item__remove {
  background: none;
  border: none;
  font-size: 11px;
  color: #6b6b6b;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  margin: 0;
}
.fcd-item__remove:hover { color: #333; }

/* ── FOOTER ── */
.fcd-footer {
  border-top: 1px solid #f0ece6;
  padding: 4px 20px;
  padding-bottom: calc(4px + env(safe-area-inset-bottom));
  flex-shrink: 0;
  background: #fff;
}
.fcd-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.fcd-subtotal__label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.fcd-subtotal__price {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.fcd-checkout-btn {
  display: block;
  width: 100%;
  background: #3FCF9D;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.fcd-checkout-btn:hover { background: #154d30; }

/* ── HIDE REBUY ── */
.rebuy-cart__flyout,
.rebuy-cart__overlay,
.rebuy-cart__background,
.rebuy-smart-cart,
.rebuy-cart__cover,
[class*="rebuy-cart__"] { display: none !important; }

/* ── SHIPPING PROTECTION ── */
.fcd-protection {
  display: flex;
  align-items: center;x
  gap: 12px;
  padding: 4px 20px;
  border-top: 1px solid #f0ece6;
  border-bottom: 1px solid #f0ece6;
  margin-bottom: 4px;
}
.fcd-protection__icon { font-size: 20px; flex-shrink: 0; margin-right: 10px; }
.fcd-protection__info { flex: 1; }
.fcd-protection__title { font-size: 13px; font-weight: 500; color: #1a1a1a; margin: 0 0 2px; }
.fcd-protection__desc { font-size: 11px; color: #6b6b6b; margin: 0; }
.fcd-protection__price { font-size: 13px; font-weight: 500; color: #1a1a1a; flex-shrink: 0; }

div#PBarNextFrameWrapper { display: none !important; }

#fcd-drawer {
  overflow-x: hidden;
}

#fcd-drawer * {
  max-width: 100%;
  box-sizing: border-box;
}

[data-target="non-coverage-button"] {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #555;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 0 4px;
  font-family: inherit;
}

[data-target="non-coverage-button"]:hover {
  color: #1a1a1a;
}

[data-target="non-coverage-button"] p {
  margin: 0;
  font-size: 13px !important;
}

.fcd-checkout-no-protection {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #6b6b6b;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  border-top: 1px solid #f0ece6;
  padding: 6px 0 6px;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.fcd-checkout-no-protection:hover {
  color: #1a1a1a;
  text-decoration: underline;
}


/* ── SHORT VIEWPORT FIX (landscape phones, small screens) ── */
@media (max-height: 500px) {
  .fcd-drawer {
    height: 100vh;
    height: 100dvh;
  }
  .fcd-body {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Move protection INTO the scroll area instead of pinning it above footer */
  .fcd-protection {
    margin-bottom: 0;
    border-top: none;
    padding: 8px 20px;
  }
  /* Tighten everything */
  .fcd-header { padding: 8px 20px; }
  .fcd-header__title { font-size: 12px; }
  .fcd-shipping-bar { padding: 6px 20px; }
  .fcd-shipping-bar__text { font-size: 11px; }
  .fcd-shipping-bar__track { margin-bottom: 4px; }
  .fcd-item { padding: 8px 20px; grid-template-columns: 56px 1fr; gap: 10px; }
  .fcd-item__img { width: 56px; height: 56px; }
  .fcd-footer {
    padding: 8px 20px;
    max-height: 140px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-shrink: 0;
  }
  .fcd-subtotal { margin-bottom: 6px; }
  .fcd-subtotal__label, .fcd-subtotal__price { font-size: 13px; }
  .fcd-checkout-btn { padding: 9px; font-size: 13px; }
  .fcd-checkout-no-protection { padding: 6px 0 2px; font-size: 12px; }
}


/* ── 위에는 아무것도 붙박아 두지 않는다 ──
   진행 바 · YOUR CART · 담은 물건이 한 덩어리로 함께 올라간다.
   스크롤은 서랍 전체가 하고, 결제 칸만 아래에 남는다. */
.fcd-drawer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.fcd-drawer > [data-gwp-picker] {
  flex: 0 0 auto;
  position: static;
  background: #fff;
}
.fcd-drawer > .fcd-header {
  position: static;
  background: #fff;
}
.fcd-body {
  flex: 1 0 auto;
  min-height: 0;
  overflow: visible;
}
.fcd-footer {
  position: sticky;
  bottom: 0;
  z-index: 5;
}


/* 장바구니에 담은 물건도 붙박이다 — 스크롤은 추천/사은품 영역만 움직인다.
   (물건이 많으면 이 칸 안에서만 스크롤된다.) */
.fcd-body > .fcd-items-wrap {
  background: #fff;
  border-bottom: 1px solid #f0ece6;
}


/* ── 사은품 줄 ── 값은 긋고 FREE GIFT 를 붙인다. */
.fcd-item__price-was { color: #9aa09a; font-weight: 400; text-decoration: line-through; }
.fcd-item__free {
  margin-left: 6px;
  color: #006240;
  font-weight: 800;
  font-size: 0.92em;
  letter-spacing: 0.02em;
}


/* ── 줄 간격 줄이기 ── 한 줄이 차지하는 위아래 공백을 줄인다. */
.fcd-items { padding: 0; }
.fcd-item {
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 3px 18px;
  align-items: center;
}
.fcd-item__img { width: 64px; height: 64px; }
.fcd-item__info { gap: 0; }
.fcd-item__title { line-height: 1.3; }
.fcd-item__variant,
.fcd-item__subscription { line-height: 1.35; }
.fcd-item__price-row { margin-top: 2px; }
.fcd-item__qty-btn { width: 25px; height: 25px; font-size: 15px; }
.fcd-item__qty-num { width: 26px; }

/* 구독 제안 상자도 같이 줄인다 — 줄 하나가 통째로 커 보이는 주범이다. */
.fcd-item .csub-upgrade-wrapper { margin-top: 5px; }
.fcd-item .csub-upgrade-btn { padding: 5px 10px; }
.fcd-item .csub-wrapper { margin-top: 6px; gap: 4px; }


/* ── 사은품 줄의 사이즈 칸 ── 바꾸면 위젯이 줄을 갈아 끼운다. */
.fcd-item__giftsize {
  align-self: flex-start;
  max-width: 100%;
  margin: 2px 0 0;
  font: inherit;
  font-size: 12px;
  color: #1a1a1a;
  padding: 3px 22px 3px 8px;
  border: 1px solid #e0dbd4;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 7px center;
  background-size: 9px 6px;
}
.fcd-item__giftsize:disabled { opacity: 0.5; cursor: default; }


/* ── 붙박이 칸 경계 ── 밑에 더 있다는 걸 옅은 선과 그림자로 알린다. */
.fcd-drawer > .fcd-header {
  border-bottom: 1px solid #e6e1da;
}
.fcd-body > .fcd-items-wrap {
  border-bottom: 1px solid #ded8d0;
}
