/** Shopify CDN: Minification failed

Line 13:0 Unexpected "<"
Line 16:5 Unexpected "{"
Line 16:25 Expected ":"
Line 17:2 Unexpected "<"
Line 24:5 Unexpected "{"
Line 24:25 Expected ":"
Line 25:2 Unexpected "<"
Line 49:0 Unexpected "}"

**/
<!doctype html>
<html lang="{{ request.locale }}">
  <head>
    {{ content_for_header }}
  </head>
  <body>
    <div class="custom-banner fade-in-up">
      <h1>BEARSTORE24에 오신 걸 환영합니다!</h1>
      <p>지금 가장 인기 있는 제품을 확인하세요 🐻</p>
    </div>

    {{ content_for_layout }}
  </body>
</html>
/* Fade-in 애니메이션 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out both;
}

.custom-banner {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}
}


