/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
  font-family: "Pretendard GOV Variable", "Pretendard GOV", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.font-pretendard {
  font-family: 'Pretendard GOV Variable', 'Pretendard GOV',
               -apple-system, BlinkMacSystemFont, system-ui,
               'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
}

.font-display {
  font-family: "TAN - Angleton Regular", "Pretendard GOV Variable", "Pretendard GOV",
               -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue",
               "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic",
               "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.font-poppins {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

@keyframes imgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.product-card {
  animation: imgFadeIn 0.18s ease-in;
}

.product-card-image {
  color: transparent;
}

.product-image-gallery {
  animation: imgFadeIn 0.18s ease-in;
}

.product-image-gallery img {
  color: transparent;
}

.ad-bar {
  overflow: hidden;
  background: #fad4cf;
  color: #000;
}

.ad-bar-track {
  display: flex;
  white-space: nowrap;
  animation: ad-bar-scroll 18s linear infinite;
}

@keyframes ad-bar-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
