@charset "UTF-8";

/* ========== 외부 폰트 ========== */
@font-face {
  font-family: 'Cafe24PROUP';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2507-1@1.0/Cafe24PROUP.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* ========== 초기화 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #393d3b;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SUITE', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #393d3b;
  min-width: 1320px;
}

/* 폼 컨트롤이 body 폰트를 확실히 상속하도록 */
/* 사이트의 모든 주요 버튼 폰트를 통일 */
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;     /* 선택: 글자 크기도 상속 */
  line-height: inherit;   /* 선택: 줄간격도 상속 */
  color: inherit;         /* 선택: 글자색도 상속 */
}

#main_wrap {
  min-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.hero {
  min-height: 100dvh;                 /* iOS에서 vh 흔들림 완화 */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {                        /* 텍스트 오버레이 */
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

/* ========== 공통 레이아웃 ========== */
.wrap {
  width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* ========== 헤더 ========== */
#header {
  background: rgba(244, 180, 211, 0.983);
  height: 60px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

#header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo_section {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: default;
}

.logo_img {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo_text {
  font-family: 'Cafe24PROUP';
  color: #e73652;
  font-size: 24px;
  font-weight: 400;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.logo_section:hover {
  transform: scale(1.05);
}

.logo_section:hover .logo_text {
  color: #ffffff;
}

.logo_section:hover .logo_img img {
  transform: scale(1.1);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  padding: 16px;
  display: block;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a.on {
  color: #e73652;
}

.header_right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search_box {
  display: flex;
  align-items: center;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 4px 16px;
  background: rgba(255, 255, 255, 0.6);
  height: 23px;
}

.search_box input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  width: 100px;
}

.search_icon img {
  width: 16px;
  transform: translateY(0px);
}


.search_icon_small {
  flex-shrink: 0; /* 아이콘이 줄어들지 않게 */
  width: 16px;
  height: 16px;
}

.search_icon_small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auth_links {
  display: flex;
}

.auth_links a {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  padding: 16px;
  display: block;
}

.auth_links a:hover {
  color: #e73652;
}

/* ========== 메인 배너 슬라이더 ========== */
#main_banner {
  position: relative;
  overflow: hidden;
  height: 900px;
  margin-top: 60px;
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_slides {
  background-color: #111;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner_slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
}

.banner_slide.active {
  opacity: 1;
  pointer-events: auto;
}

.banner_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.banner_content {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  max-width: 645px;
  z-index: 3;
  position: relative;
  transition: opacity 0.4s ease;
}

.banner_content.fade-out {
  opacity: 0;
}

.banner_title {
  font-family: 'Cafe24PROUP';
  font-size: 40px;
  margin-bottom: 23px;
}

.banner_subtitle {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 23px;
}

.banner_description {
  font-size: 24px;
}

.banner_dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  gap: 10px;
  justify-content: center;
  z-index: 4;
}

.banner_dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.banner_dots .dot:hover {
  transform: scale(1.1);
}

.banner_dots .dot.active {
  background: #ffffff;
}

.banner_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
}

.banner_arrow.prev {
  left: 20px;
}

.banner_arrow.next {
  right: 20px;
}

.banner_arrow:hover {
  opacity: 0.9;
  transform: translateY(calc(-50% - 1px));
}

/* ========== 플랫폼 기능 소개 ========== */
#platform_features {
  position: relative;
  padding: 45px 0;
  background: #fff7e8;
}

.features_title {
  text-align: center;
  margin-bottom: 45px;
}

.section_title {
  color: #393d3b;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 13px;
}

.zip_text {
  color: #519e79;
}

.features_grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.feature_card {
  position: relative;
  width: 315px;
  height: 467px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.feature_bg {
  filter: brightness(0.8);
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; /* 전체가 보이고, 여백이 생길 수 있음 */
}

/* CSS 배경이미지 제거 - JS에서 지연 로딩으로 처리 */
.feature_bg.creation {
  /* background: url('../images/c1.pwebp') no-repeat center center / cover; */
}

.feature_bg.storage {
  /* background: url('../images/c2.pwebp') no-repeat center center / cover; */
}

.feature_bg.exhibition {
  /* background: url('../images/c3.pwebp') no-repeat center center / cover; */
}

.feature_bg.sales {
  /* background: url('../images/c4.pwebp') no-repeat center center / cover; */
}

.feature_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(102, 102, 102, 0.7), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature_content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 62px;
  opacity: 0;
  text-align: center;
  transition: opacity 0.5s ease;
}

.feature_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.feature_title {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 96px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.feature_bg.storage~.feature_content .feature_icon {
  transform: translateX(4px);
}

.feature_button {
  border: 2px solid #ffffff;
  border-radius: 30px;
  padding: 8px 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature_button:hover {
  background: #ff6767cb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature_card:hover .feature_overlay {
  opacity: 1;
}

.feature_card:hover .feature_content {
  opacity: 1;
}

/* ========== 현재 전시 ========== */
#exhibition {
  background: #ffffff;
  padding: 60px 0;
}

.exhibition_title {
  color: #e73652;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.exhibition_subtitle {
  color: #393d3b;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}

.exhibition_details_row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.detail_item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail_icon_img {
  width: 24px;
  height: 24px;
}

.detail_text {
  color: #393d3b;
  font-size: 15px;
  opacity: 0.8;
}

.exhibition_images {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.exhibition_img {
  width: 424px;
  height: 244px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.exhibition_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.exhibition_img.hover-zoom:hover {
  transform: scale(1.03);
}

.exhibition_img.hover-zoom {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.exhibition_img.hover-zoom:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.exhibition_categories {
  display: flex;
  gap: 61px;
  justify-content: center;
}

.category_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 386px;
}

.category_info {
  color: #519e79;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 7px;
}

.category_title {
  color: #393d3b;
  font-size: 16px;
  font-weight: bold;
}

.category_arrow {
  width: 18px;
  height: 20px;
  background: #519e79;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
}

/* ========== 이달의 작가 - 스택 슬라이더 ========== */
#artist {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}

.section_header {
  text-align: center;
  margin-bottom: 60px;
}

.section_description {
  font-size: 16px;
  color: #666;
}

/* 스택 슬라이더 컨테이너 */
.artist_slider_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.artist_stack_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.artist_card {
  position: absolute;
  /* 오버레이 기준점 */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.8s ease;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  /* 오버레이 넘침 방지 */
}

/* ▼ 어둡게(검은 오버레이) 효과 */
.artist_card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* top/right/bottom/left: 0 */
  background: rgba(0, 0, 0, 0.45);
  /* 어둡게 강도(45%) → 원하면 0.6 등으로 조절 */
  pointer-events: none;
  /* 마우스 이벤트 방해 X */
  opacity: 0;
  /* 기본: 표시 안 함 */
  transition: opacity 0.3s ease;
  /* 페이드 전환 */
}

/* JS에서 .dimmed 를 붙이면 어둠워짐 */
.artist_card.dimmed::after {
  opacity: 1;
}

/* 카드 배경 이미지 - CSS 제거하고 JS에서 지연 로딩 처리 */
.card_style_1 {
  /* background-image: url('../images/e1.wedp'); */
}

.card_style_2 {
  /* background-image: url('../images/e2.wedp'); */
}

.card_style_3 {
  /* background-image: url('../images/e3.wedp'); */
}

.card_style_4 {
  /* background-image: url('../images/e4.wedp'); */
}

.card_style_5 {
  /* background-image: url('../images/e5.wedp'); */
}

/* 위치별 크기 및 배치 */
/* 위치 0: 가운데 가장 큰 카드 */
.artist_position_0 {
  width: 430px;
  height: 447px;
  transform: translateX(0);
  z-index: 5;
  filter: brightness(1);
}

/* 위치 1: 오른쪽 첫 번째 (중간 크기) */
.artist_position_1 {
  width: 390px;
  height: 420px;
  transform: translateX(240px);
  z-index: 4;
  filter: brightness(0.85);
}

/* 위치 2: 오른쪽 두 번째 (가장 작은 크기) */
.artist_position_2 {
  width: 360px;
  height: 380px;
  transform: translateX(480px);
  z-index: 3;
  filter: brightness(0.7);
}

/* 위치 3: 왼쪽 첫 번째 (중간 크기) */
.artist_position_3 {
  width: 390px;
  height: 420px;
  transform: translateX(-240px);
  z-index: 2;
  filter: brightness(0.85);
}

/* 위치 4: 왼쪽 두 번째 (가장 작은 크기) */
.artist_position_4 {
  width: 360px;
  height: 380px;
  transform: translateX(-480px);
  z-index: 1;
  filter: brightness(0.7);
}

/* 슬라이드 애니메이션 */
.artist_card.transitioning {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 호버 효과 제거 - 시각적 변화 없음 */

/* 무한루프 흐르는 텍스트 */
@keyframes infiniteFlow {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.divider_banner {
  background: #519e79;
  padding: 30px 0;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.divider_text {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  white-space: nowrap;
  display: inline-block;
  animation: infiniteFlow 25s infinite linear;
}

/* ========== 작품 갤러리 ========== */
#artwork_gallery {
  background: #fff7e8;
  padding: 45px 0;
  position: relative;
}

.gallery_filters {
  margin-bottom: 40px;
}

.filter_tags_aligned {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  width: 1257px;
  max-width: 1257px;
  margin-left: auto;
  margin-right: auto;
}

.filter_tag {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter_tag.best {
  background: #f4b4d3;
  color: #f91e3d;
}

.filter_tag.best:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.filter_tag.new {
  background: #a1d7aa;
  color: #185022;
}

.filter_tag.new:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.filter_categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1257px;
  max-width: 1257px;
  margin: 0 auto;
}

.category_filters {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.category_btn {
  height: 42px;
  line-height: 42px;
  padding: 0 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category_btn.active {
  background: #e73651;
  color: #ffffff;
}

.category_btn.active:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.category_btn:not(.active) {
  background: #ffffff;
  color: #393d3b;
}

.category_btn:not(.active):hover {
  background: #f0f0f0;
}

/* === 검색바: iOS에서도 아이콘 위치 고정 버전 === */
.search_bar {
  position: relative;              /* 아이콘 절대배치 기준 */
  height: 32px;
  background: #ffffff;
  border-radius: 20px;
  /* 오른쪽 아이콘 자리 확보(아이콘 20px + 여백) */
  padding: 0 40px 0 17px;
  display: flex;
  align-items: center;
  gap: 10px;                       /* 입력창과 아이콘 사이 시각적 간격 */
  width: 220px;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.search_bar input {
  background: transparent;
  border: none;
  outline: none;
  color: #393d3b;
  font-size: 16px;                 /* iOS 자동 확대(zoom) 방지 */
  flex: 1 1 auto;
  min-width: 0;                    /* 플렉스 오버플로 방지 */
  -webkit-appearance: none;
  appearance: none;
}

.search_bar input::placeholder {
  color: #f4b4d3;
}

/* 아이콘: 항상 우측 중앙에 고정 */
.search_bar .search_icon_small {
  position: absolute;
  right: 12px;                     /* 우측 여백 */
  top: 50%;
  transform: translateY(-50%);
  width: 20px;                     /* 아이콘 컨테이너 크기 */
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;            /* 입력 포커스 방해 방지 */
}

/* 인라인 베이스라인 영향 제거 + 크기 맞춤 */
.search_bar .search_icon_small img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.artwork_grid {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.artwork_row {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
}

.artwork_images {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.artwork_img {
  width: 301px;
  height: 302px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.artwork_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
  display: block;
  transform-origin: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.artwork_img:hover img {
  transform: scale(1.03);
}

.artwork_img:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.artwork_titles {
  display: flex;
  gap: 18px;
  justify-content: center;
  text-align: center;
}

.artwork_title {
  width: 301px;
  text-align: center;
  color: #393d3b;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ========== 시설안내 ========== */
.features_group_bg1,
.features_group_bg2 {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.features_group_bg1 { background: #f8f9fa; }
.features_group_bg2 { background: #fff7e8; }

.section_main_title {
  text-align: center;
  margin-bottom: 60px;
  color: #393d3b;
  font-size: 24px;
  font-weight: 800;
}

.feature_intro_section { margin-bottom: 80px; }
.feature_intro_section:last-child { margin-bottom: 0; }

.feature_intro_container {
  width: 1200px;
  height: 450px;
  margin: 0 auto;
  padding: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.feature_intro_content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.feature_intro_text {
  width: 450px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature_intro_title {
  font-size: 24px;
  font-weight: 800;
  color: #393d3b;
  margin-bottom: 24px;
  line-height: 1.4;
}

.feature_highlight.creation,
.feature_highlight.gallery { color: #519e79; }

.feature_highlight.storage,
.feature_highlight.sales { color: #ff6767; }

.feature_intro_description {
  font-size: 16px;
  font-weight: 500;
  color: #393d3b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.feature_intro_btn {
  width: 142px;
  height: 50px;
  border-radius: 25px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.feature_intro_btn:hover { opacity: 0.8; }
.feature_intro_btn.creation,
.feature_intro_btn.gallery { background: #519e79; }
.feature_intro_btn.storage,
.feature_intro_btn.sales { background: #ff6767; }

/* ========== 자동 슬라이드 이미지 ========== */
.feature_intro_image {
  width: 550px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature_intro_image:hover { transform: scale(1.02); }

/* 슬라이드 개별 이미지 (기본: 숨김) */
.slide_image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 전체 보이게 하려면 contain 으로 변경 */
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  border-radius: 20px;
}

.slide_image.active {
  opacity: 1;
  z-index: 2;
}

/* ========== 스크롤 등장 애니메이션 ========== */
/* 초기 상태: 안 보임 + 좌/우 오프셋 */
.animate-slide-left,
.animate-slide-right {
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  will-change: transform, opacity;
}

.animate-slide-left  { transform: translateX(-100px); }
.animate-slide-right { transform: translateX( 100px); }

/* JS가 .animate-visible 을 붙이면 등장 */
.animate-slide-left.animate-visible,
.animate-slide-right.animate-visible {
  opacity: 1;
  transform: translateX(0);
}

/* 사용자 접근성: 모션 줄임 선호 시 전환 최소화 */
@media (prefers-reduced-motion: reduce) {
  .feature_intro_image,
  .slide_image,
  .animate-slide-left,
  .animate-slide-right {
    transition: none !important;
  }
}


/* ========== 프로모션 배너 ========== */
.promo_banner {
  background: #ff6767;
  padding: 30px 0;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.promo_text {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  white-space: nowrap;
  display: inline-block;
  animation: infiniteFlow 25s infinite linear;
}

.divider_banner:hover .divider_text,
.promo_banner:hover .promo_text {
  animation-play-state: paused;
}

/* ========== 뉴스레터 섹션 ========== */
#newsletter {
  background: #ffffff;
  padding: 45px 0;
  margin-bottom: 20px;
}

.section_header_row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 45px;
}

.section_header_row h2 {
  color: #393d3b;
  font-size: 24px;
  font-weight: 800;
  padding-top: 20px;
}

.view_all_btn {
  color: #393d3b;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.view_all_btn:hover {
  color: #f3435d;
}

/* ========== 상품 섹션 ========== */
#products {
  background: #ffffff;
  padding: 45px 0;
}

/* ========== 슬라이더 ========== */
.slider_wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider_track {
  display: flex;
  transition: transform 0.5s ease;
  width: calc(313px * 9 + 23px * 8);
}

.slider_arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  outline: none;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.slider_arrow img {
  width: 24px;
  height: 42px;
  display: block;
  transition: all 0.3s ease;
}

.slider_arrow:hover {
  transform: translateY(-50%) scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.slider_arrow:hover img {
  opacity: 0.9;
}

.slider_arrow.prev {
  left: 20px;
}

.slider_arrow.next {
  right: -5px;
}

.slider_arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* ========== 뉴스레터 아이템 ========== */
.newsletter_item {
  width: 313px;
  flex-shrink: 0;
  margin-right: 23px;
}

.newsletter_item:last-child {
  margin-right: 0;
}

.newsletter_img {
  width: 100%;
  height: 313px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.newsletter_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter_title {
  color: #393d3b;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}

.newsletter_subtitle {
  color: #519e79;
  font-size: 16px;
  font-weight: 500;
}

.newsletter_link {
  color: #519e79;
  text-decoration: none;
  transition: all 0.3s ease;
}

.newsletter_link:hover {
  text-decoration: underline;
  color: #3d7a5c;
}

/* ========== 상품 아이템 ========== */
.product_item {
  width: 313px;
  flex-shrink: 0;
  margin-right: 23px;
}

.product_item:last-child {
  margin-right: 0;
}

.product_img {
  width: 100%;
  height: 193px;
  border-radius: 20px;
  margin-bottom: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product_title {
  color: #393d3b;
  font-size: 24px;
  font-weight: 500;
}

.product_link {
  color: #519e79;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.product_link:hover {
  text-decoration: underline;
}

/* ========== 스튜디오 안내 ========== */
#studio_info {
  background: #fff7e8;
  padding: 90px 0;
  position: relative;
}

.studio_content {
  display: flex;
  gap: 190px;
  align-items: center;
}

.studio_text {
  width: 369px;
}

.studio_title {
  color: #393d3b;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 45px;
  line-height: 1.45;
}

.studio_description {
  color: #393d3b;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 45px;
}

.studio_address {
  color: #393d3b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 45px;
}

.studio_button {
  background: #ff6767;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 33px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.studio_button:hover {
  opacity: 0.9;
}

.studio_img {
 width: 610px; 
  height: 394px; 
  border-radius: 8px;
  overflow: hidden;
}

/* ========== 푸터 ========== */
#footer {
  background: #000000;
  padding: 31px 0;
}

#footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer_logo {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
}

.footer_logo_text {
  width: 47px;
  height: 27px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 12px;
}

.footer_logo_text img {
  position: relative;
  top: 4px;
}

.footer_info {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.footer_social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social_icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.social_icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.social_icon:hover {
  opacity: 0.8;
}

/* ========== 로고 모달 ========== */
.logo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(100%);
  transition: transform 1s ease-in-out;
  visibility: hidden;
}

.logo-modal.active {
  transform: translateY(0);
  visibility: visible;
}

.logo-modal-image {
  max-width: 54vw;
  max-height: 54vh;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.logo-modal-image:hover {
  transform: scale(1.02);
}

body.modal-open {
  overflow: hidden;
}

/* ========== 페이지 로드 애니메이션 ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section_header {
  animation: fadeIn 0.6s ease-out;
}

/* ========== 반응형 ========== */
@media (max-width: 1200px) {
  .feature_intro_container {
    width: 95%;
    padding: 30px;
  }

  .feature_intro_content {
    gap: 50px;
  }

  .feature_intro_image {
    width: 450px;
    height: 280px;
  }

  .artist_position_0 {
    width: 280px;
    height: 280px;
  }

  .artist_position_1,
  .artist_position_3 {
    width: 240px;
    height: 240px;
  }

  .artist_position_2,
  .artist_position_4 {
    width: 200px;
    height: 200px;
  }

  .artist_position_1 {
    transform: translateX(160px);
  }

  .artist_position_2 {
    transform: translateX(300px);
  }

  .artist_position_3 {
    transform: translateX(-160px);
  }

  .artist_position_4 {
    transform: translateX(-300px);
  }
}

/* 사이트의 모든 주요 버튼 폰트를 통일 */
.feature_intro_btn,
.banner_arrow,
.banner_dots .dot,
.feature_button,
.category_btn {
  font-family: 'SUITE', 'Cafe24PROUP', sans-serif !important;
  font-weight: 600; /* 원하시는 굵기로 조절 가능 */
}