@charset "UTF-8";
/*
 Theme Name:   GeneratePress EP Theme
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme made by EP.
 Author:       EVERYDAY PRACTICE
 Author URI:   http://everyday-practice.com
 License:      GNU General Public License v3.0 (or later)
 License URI:  https://www.gnu.org/licenses/gpl-3.0.html
 Template:     generatepress
 Version:      0.1
*/
/* Initialize */
:root {
  --color-white: #fff;
  --color-black: #000;
}

/*
 * World Design Congress Seoul Preview — 캔버스 기반 티켓 이미지 생성 기능
 * docs/features/캔버스_기반_티켓_이미지_생성_기능.md 참고
 *
 * 색상 팔레트를 여기(CSS 커스텀 프로퍼티)와 wdo-ticket/js/canvas/constants.js(JS) 양쪽에
 * 정의한다. 두 파일을 자동 동기화하는 빌드 도구가 없으므로, 팔레트를 바꿀 때는
 * 반드시 두 파일을 함께 수정할 것.
 */
/* ----- WDO Fonts Start ----- */
/* ABC Camera Plain은 fonts/font.css에서 임시 웹폰트로 로드한다.
   Plus는 아직 웹폰트 미지정 — 로컬 ttf. 추후 둘 다 정식 서브셋/woff2로 교체 예정. */
@font-face {
  font-family: "ABC Camera Plus";
  src: url("/wp-content/themes/generatepress_child/fonts/ABCCameraPlusVariable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
/* ----- WDO Fonts End ----- */
/* ----- WDO Tokens Start ----- */
:root {
  /* Outline Color 팔레트 (9색, 이름 고정 — wdo-ticket/js/canvas/constants.js의 COLOR_TOKENS와 맞출 것) */
  --wdo-black: #000000;
  --wdo-white: #ffffff;
  --wdo-green: #28d763;
  --wdo-river-blue: #48a9f9;
  --wdo-sunset-orange: #ff5700;
  --wdo-dawn-violet: #cd8de9;
  --wdo-autumn-yellow: #fce300;
  --wdo-midnight-magenta: #ff00c2;
  --wdo-stone-gray: #9c9a98;
  --wdo-font-plain: "ABC Camera Plain", sans-serif;
  --wdo-font-plus: "ABC Camera Plus", sans-serif;
  --wdo-purple: var(--wdo-dawn-violet);
  --wdo-yellow: var(--wdo-autumn-yellow);
  /* 페이지 배경 노랑은 팔레트의 autumnYellow(#FCE300)와 미세하게 다른 별도 값(#FCF200) */
  --wdo-bg-yellow: #fcf200;
}

/* ----- WDO Tokens End ----- */
/* ----- WDO Shared Start ----- */
.wdo-page {
  margin: 0;
  min-height: 100vh;
  font-family: var(--wdo-font-plain);
}

.wdo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 14px;
  padding: 15px 15px;
  font-family: var(--wdo-font-plain);
  font-size: 18px;
  line-height: 1.1;
  cursor: pointer;
  text-decoration: none;
  background: var(--wdo-purple);
  color: #000;
  box-sizing: border-box;
}
.wdo-btn:disabled:hover, .wdo-btn:disabled:focus {
  background-color: var(--wdo-purple);
  color: #000;
}
.wdo-btn img {
  width: 20px;
  height: 20px;
}
.wdo-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.wdo-btn.lg {
  font-size: 32px;
}
.wdo-btn:hover:not(:disabled), .wdo-btn:focus:not(:disabled) {
  background-color: #c17cdf;
  color: #000;
}
@media (max-width: 1024px) {
  .wdo-btn {
    font-size: 15px;
    border-radius: 8px;
  }
  .wdo-btn.lg {
    font-size: 20px;
  }
}

.wdo-btn--primary {
  width: 100%;
}

.wdo-btn--sidebar {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 15px;
}
@media (max-width: 1024px) {
  .wdo-btn--sidebar {
    padding: 12px 14px;
  }
}

.wdo-btn__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  margin: 0;
  border: 0;
  background: #000;
  color: #fff;
  font-family: var(--wdo-font-plain);
  font-weight: 500;
  font-size: 25px;
  line-height: 1;
  padding: 5px 8.5px;
  cursor: pointer;
  appearance: none;
}
@media (max-width: 1024px) {
  .wdo-btn__lang {
    font-size: 18px;
    padding: 6px 8px;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.wdo-slogan-lottie {
  width: 100%;
  aspect-ratio: 604/440;
  overflow: visible;
}
.wdo-slogan-lottie svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ----- WDO Shared End ----- */
/* ----- WDO Modal Start ----- */
.wdo-modal[hidden] {
  display: none;
}

.wdo-modal {
  --wdo-modal-in-duration: 0.32s;
  --wdo-modal-out-duration: 0.22s;
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wdo-modal.is-closing {
  pointer-events: none;
}

.wdo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.wdo-modal.is-open .wdo-modal__backdrop {
  animation: wdo-modal-backdrop-in var(--wdo-modal-in-duration) ease forwards;
}

.wdo-modal.is-closing .wdo-modal__backdrop {
  animation: wdo-modal-backdrop-out var(--wdo-modal-out-duration) ease forwards;
}

.wdo-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 30px;
  max-width: min(778px, 92vw);
  max-height: 88vh;
  overflow: visible;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
}
@media (max-width: 1024px) {
  .wdo-modal__dialog {
    border-radius: 20px;
  }
}

.wdo-modal.is-open .wdo-modal__dialog {
  animation: wdo-modal-dialog-in var(--wdo-modal-in-duration) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.wdo-modal.is-closing .wdo-modal__dialog {
  animation: wdo-modal-dialog-out var(--wdo-modal-out-duration) ease forwards;
}

@keyframes wdo-modal-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes wdo-modal-backdrop-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes wdo-modal-dialog-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes wdo-modal-dialog-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wdo-modal.is-open .wdo-modal__backdrop,
  .wdo-modal.is-open .wdo-modal__dialog,
  .wdo-modal.is-closing .wdo-modal__backdrop,
  .wdo-modal.is-closing .wdo-modal__dialog {
    animation: none;
  }
  .wdo-modal.is-open .wdo-modal__backdrop,
  .wdo-modal.is-open .wdo-modal__dialog {
    opacity: 1;
    transform: none;
  }
}
.wdo-modal__close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
  padding: 4px;
}
.wdo-modal__close img {
  max-width: initial;
  width: 100%;
  height: 100%;
}
.wdo-modal__close:focus {
  background-color: #fff;
}
.wdo-modal__close:hover {
  background-color: #fff;
  opacity: 0.5;
}

.wdo-modal__dialog--how-to-use {
  padding: 0;
  overflow: visible;
  background: transparent;
}
.wdo-modal__dialog--how-to-use .wdo-howto__header,
.wdo-modal__dialog--how-to-use .wdo-howto__body {
  border-radius: 30px;
}

.wdo-howto__header {
  background: #ff5700;
  padding: 70px 40px;
  text-align: center;
}
@media (max-width: 1024px) {
  .wdo-howto__header {
    padding: 40px 24px;
  }
}

.wdo-howto__title {
  font-family: var(--wdo-font-plus);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 128px);
  margin: 0;
  color: #000;
}

.wdo-howto__body {
  background: #62f065;
  padding: 36px;
}
.wdo-howto__body p {
  font-size: 24px;
  line-height: 1.32;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .wdo-howto__body {
    padding: 30px 24px;
  }
  .wdo-howto__body p {
    font-size: 18px;
  }
}

.wdo-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: 10px;
}

.wdo-modal__footer {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 20px;
}
@media (max-width: 1024px) {
  .wdo-modal__footer {
    padding-top: 14px;
  }
}

.wdo-modal__dialog--card {
  display: flex;
  flex-direction: column;
  padding: 19px 23px;
  width: min(550px, 92vw);
  text-align: left;
}
@media (max-width: 1024px) {
  .wdo-modal__dialog--card {
    padding: 16px;
  }
}

.wdo-card-modal__title {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 10px;
}
@media (max-width: 1024px) {
  .wdo-card-modal__title {
    font-size: 28px;
  }
}

.wdo-card-modal__body {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}
@media (max-width: 1024px) {
  .wdo-card-modal__body {
    font-size: 20px;
  }
}

.wdo-modal__dialog--form {
  display: flex;
  flex-direction: column;
  padding: 19px 23px;
  width: min(550px, 92vw);
  height: calc(100svh - 120px);
}

.wdo-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.wdo-form__required-note {
  color: var(--wdo-midnight-magenta);
  font-size: 18px;
  margin: 0 0 12px;
}

.wdo-form__required-mark {
  color: var(--wdo-midnight-magenta);
}

.wdo-form__field {
  display: block;
  margin-bottom: 14px;
}

.wdo-form__label {
  display: block;
  margin-bottom: 12px;
  font-size: 28px;
}

.wdo-form input {
  width: 100%;
  padding: 15px 17px;
  border: 1px solid #000;
  background: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
}
.wdo-form input:invalid.wdo-touched {
  border-color: var(--wdo-midnight-magenta);
}

.wdo-form__submit {
  width: 100%;
}

/* ----- WDO Modal End ----- */
/* ----- WDO Intro Start ----- */
.wdo-intro-page {
  background: var(--wdo-bg-yellow);
}

.wdo-intro {
  --padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: var(--padding);
  box-sizing: border-box;
  overflow: hidden;
}

.wdo-intro__title {
  font-family: var(--wdo-font-plus);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 128px);
  line-height: 0.9;
  margin: 0;
  color: #000;
}
.wdo-intro__title--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .wdo-intro__title {
    display: none;
  }
  .wdo-intro__title--mobile {
    display: block;
  }
}

@keyframes wdo-intro-badge-spin {
  to {
    transform: rotate(360deg);
  }
}
.wdo-intro__event-badge {
  position: absolute;
  top: var(--padding);
  right: calc(var(--padding) + 30px);
  width: clamp(90px, 10vw, 150px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  animation: wdo-intro-badge-spin 10s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .wdo-intro__event-badge {
    animation: none;
  }
}
.wdo-intro__event-badge .wdo-intro__event-badge-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.wdo-intro__event-badge .wdo-intro__event-badge-shape path {
  fill: var(--wdo-river-blue);
}
.wdo-intro__event-badge .wdo-intro__event-badge-label {
  position: relative;
  font-family: var(--wdo-font-plain);
  font-weight: 500;
  color: var(--wdo-bg-yellow);
  font-size: clamp(20px, 2.6vw, 40px);
}
@media (max-width: 1024px) {
  .wdo-intro__event-badge {
    top: 30px;
    right: 34px;
    width: 90px;
  }
}

.wdo-intro__wordmark-container {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wdo-intro__wordmark-container .wdo-intro__wordmark {
  height: 100%;
  margin: 0 auto;
  max-width: 900px;
}

.wdo-intro__bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.wdo-intro__copy {
  font-family: var(--wdo-font-plain);
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 32px);
  line-height: 1.3;
  margin: 0;
  color: #000;
}

.wdo-intro__cta {
  background: var(--wdo-river-blue);
  color: var(--wdo-bg-yellow);
  font-family: var(--wdo-font-plain);
  font-size: clamp(20px, 2.4vw, 45px);
  line-height: 1.1;
  border-radius: 22.5px;
  padding: 15px 22.5px;
  text-decoration: none;
}
.wdo-intro__cta:hover:not(:disabled), .wdo-intro__cta:focus:not(:disabled) {
  background: var(--wdo-river-blue);
  color: var(--wdo-bg-yellow);
}

@media (max-width: 1024px) {
  .wdo-intro__copy {
    position: static;
    margin-top: 24px;
  }
  .wdo-intro__cta {
    position: static;
    display: inline-block;
    margin-top: 24px;
    padding: 12px 18px;
    border-radius: 13px;
  }
}
/* ----- WDO Intro End ----- */
/* ----- WDO Canvas Screen Start ----- */
.wdo-canvas-page {
  background: var(--wdo-bg-yellow);
  overflow: hidden;
}

.wdo-canvas-screen {
  position: relative;
  height: 100vh;
  box-sizing: border-box;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 407px;
  grid-template-rows: auto 1fr;
  gap: 40px 20px;
}

.wdo-canvas-screen__header {
  grid-column: 1/-1;
}

.wdo-canvas-screen__title {
  font-family: var(--wdo-font-plain);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 60px);
  margin: 0 0 8px;
}

.wdo-canvas-screen__subtitle {
  font-family: var(--wdo-font-plain);
  font-size: clamp(16px, 1.6vw, 36px);
  line-height: 1.2;
  margin: 0;
}

.wdo-canvas-panel {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 23px 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
}

.wdo-canvas-panel__stage {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  border-radius: 15px;
  touch-action: none;
}

.wdo-canvas-stack {
  position: relative;
  flex: 0 0 auto;
}

.wdo-canvas-panel__canvas {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  touch-action: none;
  cursor: crosshair;
}

.wdo-shape-lottie {
  position: absolute;
  left: 1.9230769231%;
  top: 2.6717536857%;
  width: 96.1538461538%;
  height: 94.6564926286%;
  pointer-events: none;
  overflow: visible;
}
.wdo-shape-lottie svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.wdo-shape-lottie svg path {
  fill: none !important;
  fill-opacity: 0 !important;
  stroke: var(--wdo-shape-stroke-color, #000) !important;
  stroke-opacity: 1 !important;
  stroke-width: var(--wdo-shape-stroke-width, 2px) !important;
  stroke-linejoin: miter;
  stroke-miterlimit: 10;
  vector-effect: non-scaling-stroke;
}

.wdo-canvas-panel__loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: inherit;
  font-size: 14px;
  color: #9c9a98;
  transition: opacity 0.45s ease;
}
.wdo-canvas-panel__loader.is-leaving {
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .wdo-canvas-panel__loader {
    transition: none;
  }
}
.wdo-canvas-panel__loader.is-error .wdo-canvas-panel__spinner {
  display: none;
}

.wdo-canvas-panel__spinner {
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  border: 2px solid #d4d2d0;
  border-top-color: #000;
  border-radius: 50%;
  animation: wdo-spin 0.7s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .wdo-canvas-panel__spinner {
    animation: none;
    border-top-color: #d4d2d0;
    background: conic-gradient(#000 25%, #d4d2d0 0);
  }
}

@keyframes wdo-spin {
  to {
    transform: rotate(360deg);
  }
}
.wdo-pattern-strip {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  padding-top: 19px;
  margin-top: 19px;
  border-top: 1px solid #000;
}
.wdo-pattern-strip:empty {
  display: none;
}
.wdo-pattern-strip .wdo-pattern-strip__btn {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  background: none;
  transition: opacity 0.2s ease;
}
.wdo-pattern-strip .wdo-pattern-strip__btn img {
  display: block;
  width: 100%;
  height: 100%;
}
.wdo-pattern-strip .wdo-pattern-strip__btn[aria-pressed=true] {
  border-color: #000;
}
.wdo-pattern-strip .wdo-pattern-strip__btn:hover {
  background: transparent;
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .wdo-pattern-strip {
    --btn-size: 40px;
    display: grid;
    grid-template-columns: repeat(5, var(--btn-size));
    justify-content: center;
    gap: 8px;
  }
  .wdo-pattern-strip .wdo-pattern-strip__btn {
    width: var(--btn-size);
    height: var(--btn-size);
    margin: 0;
  }
}

.wdo-sidebar {
  background: #fff;
  border-radius: 30px;
  padding: 19px 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  min-height: 0;
  transition: opacity 0.45s ease;
}
@media (prefers-reduced-motion: reduce) {
  .wdo-sidebar {
    transition: none;
  }
}

.wdo-sidebar[inert] {
  opacity: 0.4;
}

.wdo-sidebar__handle,
.wdo-sidebar-backdrop,
.wdo-export-fab {
  display: none;
}

.wdo-sidebar__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wdo-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wdo-sidebar__bottom > .wdo-btn {
  margin-top: 14px;
}

.wdo-sidebar__divider {
  border: none;
  border-top: 1px solid #000;
  margin: 0;
}

.wdo-control__label {
  display: block;
  font-family: var(--wdo-font-plain);
  font-size: 18px;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .wdo-control__label {
    font-size: 14px;
  }
}

.wdo-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: #000;
  outline: none;
  margin: 10px 0;
}
.wdo-slider::-webkit-slider-thumb {
  appearance: none;
  width: 5px;
  height: 24px;
  background: #000;
  cursor: pointer;
  border-radius: 0;
  box-shadow: none;
}
.wdo-slider::-moz-range-thumb {
  width: 5px;
  height: 24px;
  background: #000;
  cursor: pointer;
  border: none;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .wdo-slider::-webkit-slider-thumb {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
  }
  .wdo-slider::-moz-range-thumb {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
  }
}

.wdo-swatches {
  --gap: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 15px 15px;
}

.wdo-swatches__row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
  justify-content: space-between;
}

.wdo-swatch {
  --wdo-swatch-color: #000 !important;
  display: block;
  width: 25px;
  height: 24px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
  overflow: visible;
  color: #000;
  transition: opacity 0.2s ease;
}
.wdo-swatch svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.wdo-swatch:not(:disabled):hover, .wdo-swatch:not(:disabled):focus {
  background-color: transparent;
}
.wdo-swatch:not(:disabled):focus, .wdo-swatch:not(:disabled):focus-visible {
  outline: none;
}
.wdo-swatch:not(:disabled):focus .wdo-swatch__ring, .wdo-swatch:not(:disabled):focus-visible .wdo-swatch__ring {
  stroke: var(--wdo-swatch-color);
}
.wdo-swatch .wdo-swatch__fill {
  fill: currentColor;
}
.wdo-swatch .wdo-swatch__ring {
  fill: none;
  stroke: transparent;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.wdo-swatch[aria-pressed=true] .wdo-swatch__ring {
  stroke: var(--wdo-swatch-color);
}
.wdo-swatch.is-light .wdo-swatch__fill {
  stroke: #d9d9d9;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.wdo-sidebar__post-export {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.wdo-sidebar__post-export[hidden] {
  display: none;
}
.wdo-sidebar__post-export > [hidden] {
  display: none;
}
@media (max-width: 1024px) {
  .wdo-sidebar__post-export {
    flex-direction: row;
    margin-top: 8px;
  }
}

@media (max-width: 1024px) {
  .wdo-canvas-screen {
    --wdo-sidebar-initial-height: 24px;
    display: flex;
    flex-direction: column;
    height: 100svh;
    overflow: hidden;
    gap: 20px;
    padding: 14px 14px;
  }
  .wdo-canvas-panel {
    flex: 1;
    min-height: 0;
    margin-bottom: calc(var(--wdo-sidebar-initial-height) + 15px);
  }
  .wdo-sidebar-backdrop {
    all: unset;
    box-sizing: border-box;
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    color: inherit;
    line-height: 0;
    text-align: inherit;
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
    touch-action: manipulation;
  }
  .wdo-sidebar-backdrop[hidden] {
    display: none;
  }
  .wdo-sidebar-backdrop:hover, .wdo-sidebar-backdrop:focus, .wdo-sidebar-backdrop:active {
    background: rgba(0, 0, 0, 0.35);
    outline: none;
  }
  .wdo-sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    width: 100%;
    height: var(--wdo-sidebar-initial-height);
    max-height: 80vh;
    max-height: 80dvh;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    justify-content: flex-start;
    padding-bottom: calc(19px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    transition: height 0.28s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  }
  .wdo-sidebar.is-compact:not([inert]) {
    transform: translateY(0);
  }
  .wdo-sidebar:not(.is-compact) {
    visibility: hidden;
    height: 0;
    max-height: 0;
    padding: 0;
    box-shadow: none;
    pointer-events: none;
    transform: translateY(100%);
  }
  .wdo-sidebar.is-dragging {
    transition: none;
  }
}
@media (max-width: 1024px) and (prefers-reduced-motion: reduce) {
  .wdo-sidebar {
    transform: none;
    transition: opacity 0.45s ease;
  }
  .wdo-sidebar.is-compact:not([inert]) {
    transform: none;
  }
}
@media (max-width: 1024px) {
  .wdo-sidebar__handle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    appearance: none;
    width: calc(100% + 46px);
    height: var(--wdo-sidebar-initial-height);
    margin: -19px -23px 8px;
    padding: 12px 0 8px;
    border: none;
    background: transparent;
    cursor: grab;
    touch-action: none;
    user-select: none;
  }
  .wdo-sidebar__handle:active {
    cursor: grabbing;
  }
  .wdo-sidebar__handle:hover, .wdo-sidebar__handle:focus {
    background: transparent;
  }
  .wdo-sidebar__handle-bar {
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: #c6c6c6;
  }
  .wdo-sidebar__top {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .wdo-sidebar__top::-webkit-scrollbar {
    display: none;
  }
  .wdo-sidebar__bottom {
    flex-shrink: 0;
  }
  .wdo-sidebar:not(.is-expanded) .wdo-sidebar__bottom {
    display: none;
  }
  .wdo-sidebar.is-expanded {
    overflow-y: auto;
  }
  .wdo-sidebar.is-expanded .wdo-sidebar__handle {
    position: sticky;
    top: -19px;
    z-index: 1;
    background: #fff;
  }
  .wdo-sidebar.is-expanded .wdo-sidebar__top {
    flex: 0 0 auto;
    overflow: visible;
  }
  .wdo-sidebar__actions {
    flex-direction: row;
  }
  .wdo-sidebar__actions .wdo-btn {
    flex: 1;
  }
  .wdo-swatch {
    width: 100%;
    max-width: 25px;
    height: auto;
    aspect-ratio: 25/24;
  }
  .wdo-export-fab {
    display: inline-flex;
    position: fixed;
    right: 14px;
    bottom: calc(var(--wdo-sidebar-initial-height) + 25px + env(safe-area-inset-bottom, 0px));
    z-index: 15;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
    transform: translateZ(0);
    touch-action: manipulation;
  }
  .wdo-export-fab img {
    width: 18px;
    height: 20px;
    object-fit: contain;
  }
  .wdo-sidebar.is-expanded ~ .wdo-export-fab,
  .wdo-sidebar[inert] ~ .wdo-export-fab {
    display: none;
  }
}
/* ----- WDO Canvas Screen End ----- */
:root[data-size=desktop] {
  --ep-margin: 20px;
  --ep-pageTop: 12px;
  --ep-headerH: 64px;
}

:root[data-size=tablet],
:root[data-size=phone_large],
:root[data-size=phone] {
  --ep-margin: 15px;
  --ep-pageTop: 10px;
  --ep-headerH: 50px;
}

* {
  word-break: keep-all;
  box-sizing: border-box;
  position: relative;
}

html {
  font-size: 18px !important;
}

body,
input,
select,
optgroup,
textarea {
  font-size: 1rem !important;
  line-height: 1.4em !important;
  font-family: var(--wdo-font-plain), "Br Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
}

body {
  background-color: var(--icaseoul-bg-1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
}

h1 {
  font-size: 3.125rem;
  line-height: 1.1;
  font-weight: 400;
}

h2 {
  font-size: 1.8125rem;
  line-height: 1.1;
  font-weight: 400;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
}

h4 {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 700;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.caption {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
  color: #000;
}

/* ----- Initialize End ----- */
/* Global Styles */
button, html input[type=button], input[type=reset], input[type=submit], a.button, a.wp-block-button__link:not(.has-background) {
  color: #000;
}

/* ----- Global Styles End ----- */
