@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Noto Sans KR', sans-serif;
}

/* Dialog Overlay */
.dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}

.dialog-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-content {
  background: #F7F7F7;
  border-radius: 1.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

/* Sheet Overlay (for side panel) */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}

.sheet-overlay.active {
  display: block;
}

.sheet-content {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: white;
  z-index: 101;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sheet-content.active {
  right: 0;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  min-width: 12rem;
  padding: 0.5rem;
  display: none;
  z-index: 50;
}

.dropdown-menu.active {
  display: block;
}

/* Accordion */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.active {
  max-height: 200px;
}

/* Hero Image */
.hero-image {
  border-radius: 1.5rem;
  overflow: hidden;
}

/* Feature Card */
.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* App Preview Card */
.app-preview-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Feature Badge */
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Package Card (Store page) */
.package-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.package-card:hover {
  border-color: #FF4100;
  box-shadow: 0 4px 15px rgba(255, 65, 0, 0.15);
}
