/* 2025-12-13 추가: SNS 공유 모달 스타일 */

.sns_share_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sns_share_modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.sns_share_modal_content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px 30px;
  max-width: 500px;
  width: 90%;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.sns_share_modal_close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.sns_share_modal_close:hover {
  color: #000;
}

.sns_share_modal_title {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  text-align: center;
  margin: 0 0 10px;
}

.sns_share_modal_subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #111;
  text-align: center;
  margin: 0 0 30px;
  line-height: 1.6;
}

.sns_share_icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.sns_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.sns_icon:hover {
  transform: scale(1.1);
}

.sns_icon svg {
  width: 32px;
  height: 32px;
}

.sns_kakao {
  background-color: #FEE500;
}

.sns_kakao svg path {
  fill: #3C1E1E;
}

.sns_facebook {
  background-color: #1877F2;
}

.sns_facebook svg path {
  fill: #FFFFFF;
}

.sns_twitter {
  background-color: #1DA1F2;
}

.sns_twitter svg path {
  fill: #FFFFFF;
}

.sns_share_url_box {
  display: flex;
  gap: 10px;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 10px;
}

.sns_share_url_input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 14px;
  color: #666;
  outline: none;
}

.sns_share_copy_btn {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.sns_share_copy_btn:hover {
  background-color: #000;
}

/* 모바일 반응형 */
@media (max-width: 576px) {
  .sns_share_modal_content {
    padding: 30px 20px 20px;
    max-width: 90%;
  }
  
  .sns_share_modal_title {
    font-size: 16px;
  }
  
  .sns_share_modal_subtitle {
    font-size: 15px;
  }
  
  .sns_icon {
    width: 50px;
    height: 50px;
  }
  
  .sns_share_url_box {
    flex-direction: column;
  }
  
  .sns_share_copy_btn {
    width: 100%;
  }
}
