body.modal-open, html.modal-open {
    overflow: hidden;
  }
  .wedding-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2열 */
        gap: 20px;
        align-items: center;
        justify-items: center;
      }
  
      .wedding-grid .bridegroom,
      .wedding-grid .bride {
        text-align: center;
      }
  
      .preloader .logo-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
  
      .preloader .logo-box img.preloader-logo {
        width: 80px;
        margin-bottom: 10px;
      }
  
      /* =============== 채팅(챗봇) 관련 =============== */
  
     /* 모달 배경: 중앙 정렬 */
     .chatbot-modal {
      display: none; /* 기본 숨김 */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      /* 중앙 정렬은 .show 상태에서만 적용 */
    }
    
    .chatbot-modal.show {
      display: flex;
      align-items: center;      /* 수직 중앙 */
      justify-content: center;  /* 수평 중앙 */
    }
/* 모달 컨테이너: 모던하고 깔끔한 디자인 */
.chatbot-container {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* 헤더 */
.chatbot-header {
  background: linear-gradient(90deg, #B49AF9, #9F83F5);
  padding: 8px 12px ;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-title {
  margin: 0;
  color: #fff;
  font-size: 20px;
}
.chatbot-close {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* 메시지 영역 */
.chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #f9f9f9;
}
.message {
  display: flex;
  margin-bottom: 12px;
}
.message.bot .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
}
.message.bot .text {
  background: #e0e0e0;
  border-radius: 12px;
  padding: 10px 14px;
  max-width: 70%;
}
.message.user {
  justify-content: flex-end;
}
.message.user .text {
  background: #9F83F5;
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  max-width: 70%;
}

/* 추천 질문 버튼 */
.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #ddd;
}
.suggestion-btn {
  flex: 1 1 calc(33% - 16px);
  background: #f0f0f0;
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.suggestion-btn:hover {
  background: #ddd;
}

/* 입력 영역: 한 줄에 배치 (모바일 대응) */
.chatbot-input-box {
  display: flex;
  flex-wrap: nowrap;
  border-top: 1px solid #ddd;
  padding: 12px 16px;
  background: #fff;
  /* 추가: box-sizing 설정 */
  box-sizing: border-box;
}

.chatbot-input {
  flex: 1 1 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}

.send-btn {
  background: #9F83F5;
  border: none;
  color: #fff;
  padding: 10px 16px;
  margin-left: 8px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 60px;
  box-sizing: border-box;
}
.send-btn:hover {
  background: #8a75e5;
}
  
      /* =============== 지도 / 위치 안내 섹션 =============== */
      .map-grid-container {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2열 */
        gap: 40px;
        align-items: center;
      }
  
      @media (max-width: 768px) {
        .map-grid-container {
          grid-template-columns: 1fr; /* 화면 좁을 시 1열 */
        }
      }
  
      .map-links {
        margin-top: 20px;
        display: flex;
        gap: 15px;
        justify-content: left;
      }
  
      .map-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 16px;
        border-radius: 20px;
        background: linear-gradient(135deg, #E9E4F0 0%, #D8CFE6 100%);
        text-decoration: none;
        color: #5a5a5a;
        font-weight: 500;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
  
      .map-link:hover {
        transform: scale(1.02);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
      }
  
     .map-icon {
        width: 14px;
        height: 14px;
        margin-right: 6px;
        object-fit: contain;
      }
  
      /* =============== 플로팅 챗봇 버튼 =============== */
      .chatbot-floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transform: scale(0);
    /* 수평형 디자인: 아이콘과 텍스트가 나란히 배치 */
    display: flex;
    align-items: center;
    
    /* 크기 및 여백 조정 */
    padding: 0 25px;
    height: 65px;
    border-radius: 50%;
    /* 배경 그라데이션 (원래 톤 유지) */
    background: linear-gradient(135deg, #D1C3FF 0%, #B49AF9 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  
    /* 초기 scale 0으로 설정하여 나중에 pop-up 애니메이션 적용 */
    transform: scale(0);
    /* (기존 점프 애니메이션은 제거) */
  }
  
  /* 호버 시 살짝 확대 효과 */
  .chatbot-floating-button:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  }
  
  /* 텍스트 스타일 (필요에 따라 수정) */
  .chatbot-floating-text {
    font-size: 16px;
    white-space: nowrap;
  }
  /* 아이콘 크기 조절 (원한다면 좀 더 작게) */
  .chatbot-floating-button i {
    font-size: 20px;
  }
  
  .floating-tooltip {
    /* 기존 스타일 유지 */
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: rgba(180, 154, 249, 1);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    /* 추가: 최대 너비와 줄바꿈 허용 */
    max-width: 200px;     /* 원하는 너비로 조절 (예: 200px) */
    white-space: normal;  /* 텍스트가 줄바꿈되도록 허용 */
    line-height: 1.4;     /* 줄 간격 조절 */
    white-space: pre-line;
  }
  
  /* 툴팁 아래쪽 화살표 */
  .floating-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #B49AF9 transparent transparent transparent;
  }
    
  .location-info {
    margin: 10px auto;
    text-align: center;
  }
  
  .location-info a {
    background: #B49AF9;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .location-info a:hover {
    background: #9F83F5;
  }
  
  #dsn-scrollbar.modal-open {
    overflow: hidden !important;
  }
  
  .sample-banner {
    text-align: center;
  }
  .registration-block {
    text-align: center;
    margin: 30px auto;
    padding: 0 15px;
  }
  
  /* 참석 등록 버튼 영역 */
  .attend-registration {
    margin-top: 40px;
  }
  
  /* 참석 등록 버튼 스타일 */
  /* 기존 attend-btn과는 다른 느낌의 버튼 스타일 */
  .attend-btn {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    color: #B49AF9;             
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid #B49AF9;
    border-radius: 50px;
    overflow: hidden;
    transition: color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* ::before 가 배경 그라데이션 슬라이드 효과를 만듭니다. */
  .attend-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #D1C3FF, #B49AF9, #9F83F5);
    transition: left 0.4s ease;
    z-index: -1;
  }
  
  /* 호버시 배경이 슬라이드되어 채워지며, 텍스트 색과 그림자 효과 적용 */
  .attend-btn:hover::before {
    left: 0;
  }
  
  .attend-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  /* 데스크톱 전용 레이아웃 보완 */
  @media only screen and (min-width: 992px) {
    /* marquee 텍스트 크기를 줄임 */
    .registration-block .dsn-text-marquee {
      font-size: 24px !important;
      line-height: 1.2;
    }
  
    /* full-width-marquee 클래스로 폭을 100vw로 확장 */
    .full-width-marquee {
      width: 100vw;
      /* dsn-container 등 부모 요소의 제한을 풀기 위해 좌우 마진을 음수로 보정 */
      margin-left: calc(-50vw + 50%);
      padding: 0;
    }
  }
  /* =============== 풀스크린 모달 (참석 등록) =============== */
  .registration-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7); /* 어둡게 반투명 배경 */
    z-index: 10000;
    overflow-y: auto; /* 모달 내용 길어지면 스크롤 */
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .registration-modal.show {
    opacity: 1;
  }
  
  /* 내부 컨테이너: 폼을 중앙 배치하기 위한 설정 */
  .registration-modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;   /* 수평 중앙 */
    justify-content: center; /* 수직 중앙 */
    box-sizing: border-box;
    padding: 20px;
  }
  
  /* 각 스텝은 카드 형태로 흰색 박스 + 라운드 처리 */
  .registration-step {
    width: 100%;
    max-width: 460px;   /* 폼 최대 너비 */
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    margin: 0 auto;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .registration-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  /* 타이틀/노트 */
  .registration-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
  }
  .registration-note {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  /* 입력창 */
  .registration-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    margin-bottom: 20px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .registration-input:focus {
    border-color: #b49af9;
    box-shadow: 0 0 0 2px rgba(180,154,249,0.2);
  }
  
  /* 아기 옵션 */
  .baby-option {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .registration-btn.small-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #b49af9;
    background: #fff;
    border: 2px solid #b49af9;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .registration-btn.small-btn:hover {
    background: #b49af9;
    color: #fff;
  }
  
  /* 하단 (이전/다음) 버튼 */
  .registration-navigation {
    margin-top: 20px; /* 모달 하단에 고정 대신, 카드 내부 아래쪽에 붙임 */
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .registration-nav-btn {
    min-width: 100px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #b49af9;
    border-radius: 30px;
    background: #fff;
    color: #b49af9;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }
  .registration-nav-btn:hover {
    background: #b49af9;
    color: #fff;
  }
  
  /* 모달 닫기 버튼 (우측 상단, 모달 컨테이너 절대위치) */
  .registration-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s, transform 0.2s;
  }
  .registration-close:hover {
    color: #ddd;
    transform: scale(1.1);
  }
  
  /* 반응형 */
  @media (max-width: 480px) {
    .registration-step {
      padding: 20px;
    }
    .registration-title {
      font-size: 20px;
    }
    .registration-nav-btn {
      font-size: 14px;
      padding: 12px;
    }
  }
  
  
  .navi_button {
    display: inline-flex;         /* 인라인 요소들이 옆으로 붙을 수 있도록 */
    align-items: center;          /* 버튼 내부 아이콘/텍스트 수직 가운데 */
    justify-content: center;
    
    /* 크기 관련: 고정 너비 빼고, 패딩으로 여백만 주기 */
    padding: 8px 14px;
    min-width: 90px;              /* 버튼이 너무 작아지지 않게 최소 너비 정도만 */
    
    /* 색상, 테두리, 배경, 그림자 등은 필요에 따라 */
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
  
    /* 폰트 크기 */
    font-size: 14px;
    font-weight: 500;
    color: #000;
    
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  
  .navi_button > span {
      font-weight: 500;
      color: #000;
      position: relative;
      font-size: 0.9rem;
  }
  
  .map-buttons-wrapper {
    display: flex;
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center;     /* 세로 중앙 정렬 (버튼 높이에 따라 수직 정렬) */
    gap: 16px;               /* 버튼 사이 간격 */
  }

  /* 갤러리 전체를 감싸는 컨테이너 (최대 너비 제한 적용) */
  .gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .gallery-container {
    max-width: 1200px;  /* 원하는 최대 너비 */
    margin: 0 auto;     /* 수평 중앙정렬 */
    padding: 0 15px;    /* 좌우 여백 (옵션) */
  }
  
  .masonry-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 기본(데스크톱) : 4열 */
    gap: 16px; /* 카드(이미지) 사이 간격 */
  }
  
  .masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
  }
  
  /* hover 시 이미지 확대 & 그림자 */
  .masonry-item:hover img {
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  }
  
  /* 모바일(혹은 태블릿 이하)에서는 2열로 변경 (예: 768px 이하) */
  @media (max-width: 768px) {
    .masonry-gallery {
      grid-template-columns: repeat(2, 1fr); /* 2열 */
    }
  }
  /* --- 만조니(메이슨리) 레이아웃: 열 2개, 간격 좁힘 --- */
  .gallery-grid {
    column-count: 4;           /* 열의 개수를 2개로 설정 */
    column-gap: 2px;           /* 열 간격을 8px로 설정 */
  }
  .gallery-item {
    display: block;        /* column-count를 쓰려면 block 요소가 좋아요. */
    width: 100%;           /* 부모(컬럼) 너비에 맞추기 */
    margin-bottom: 1px;   /* 위아래 간격 */
    break-inside: avoid;   /* 사진이 여러 컬럼에 걸쳐 잘리는 현상 방지 */
    -webkit-column-break-inside: avoid; /* 크로스 브라우징 */
    -moz-column-break-inside: avoid;
  }

  @media (max-width: 768px) {
    .gallery-grid {
      column-count: 2;
    }
  }
  
  .gallery-item:hover {
    transform: scale(1.02);
  }

  /* --- 모달 스타일 --- */
  .gallery-modal {
    display: none;              /* 기본 숨김 */
    position: fixed;
    z-index: 1000;              /* 다른 요소 위에 표시 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);  /* 어두운 배경 */
  }
  .gallery-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
  }
  .gallery-modal-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }

  .font18 {
    font-size:18px;
  }

  .attend-btn {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    color: #333;             /* 기본 텍스트 색상 */
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid #333;  /* 테두리 색상 */
    border-radius: 50px;
    background-color: #f7f3ed;  /* 베이지 색상 */
    overflow: hidden;
    transition: color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .attend-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* 다크 그레이 계열 그라데이션 (세련된 느낌) */
    background: linear-gradient(45deg, #4a4a4a, #2e2e2e);
    transition: left 0.4s ease;
    z-index: -1;
  }
  
  .attend-btn:hover::before {
    left: 0;
  }
  
  .attend-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }

  /* 자주 묻는 질문 전체 영역 */
.chatbot-faq-section {
  border-top: 1px solid #ddd; /* 구분선 (선택) */
  padding: 8px 12px;
  background: #fff;
}

/* 상단 헤더 스타일 */
.chatbot-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 왼쪽에 "자주 묻는 질문", 오른쪽에 "더보기" 버튼 */
  margin-bottom: 10px;
}

/* "자주 묻는 질문" 제목 텍스트 */
.faq-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* 더보기/접기 버튼 */
.faq-toggle-btn {
  background: transparent;
  border: none;
  color: #9F83F5;       /* 원하는 포인트 컬러 */
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.3s;
}

.faq-toggle-btn:hover {
  background: rgba(159, 131, 245, 0.15);
}

/* 실제 추천 질문들(버튼) 배치  */
.faq-suggestions {
  display: flex;
  flex-wrap: wrap; /* 버튼이 줄바꿈되도록 */
  gap: 8px;        /* 버튼 사이 여백 */
}

/* collapsed 상태에서 숨겨진 부분은 display:none 대신에
   .hidden-part 에만 display:none 줄 수도 있음 */
.faq-suggestions.collapsed .hidden-part {
  display: none;
}
/**************************************************
 * (A) Footer 결혼 일시/장소
 **************************************************/
 .footer-wedding-info {
  text-align: center;
  margin-bottom: 20px;
}
.footer-wedding-info p {
  font-size: 14px;
  color: #ccc; /* 원하는 색상 */
  margin: 0;   /* 기본 margin 제거 */
  line-height: 1.4;
}

/**************************************************
 * (B) 축의 안내 (제목 + 버튼)
 **************************************************/
.footer-gift-section {
  text-align: center;   /* 가운데 정렬 */
  margin-bottom: 20px;  /* 아래 여백 */
}

.gift-section-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px; /* 제목과 버튼 사이 간격 */
}

/* 버튼 래퍼 */
.footer-gift-buttons {
  display: inline-flex; /* 가로 배치 */
  gap: 10px;           /* 버튼 간격 */
}

/**************************************************
 * (C) 아이콘+라벨 버튼 (.gift-item)
 **************************************************/
.gift-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f7f2ff; /* 옅은 보라 배경 */
  color: #663399;      /* 보라 텍스트 */
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 14px;
  border: 1px solid #d9c7f3;
}

.gift-item i {
  font-size: 16px;
}

.gift-item:hover {
  background: #ebe3f8; 
  color: #4e2f81;
}

.gift-label {
  font-weight: 600;
}

/**************************************************
 * (D) 토스트 (#copy-toast)
 **************************************************/
#copy-toast {
  position: fixed;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
  z-index: 9999;
}


@media (max-width: 480px) {
  .chatbot-input {
    max-width: 250px ! important; /* 원하는 최대 너비로 조절 */
  }
}

#gallery-section {
  /* 예시로 상단 고정 메뉴 높이가 100px 정도라 가정 */
  scroll-margin-top: 100px;
}

/* ---------------------------
   (A) 모달 배경
----------------------------*/
.gift-modal {
  display: none; /* 처음에는 숨김 */
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  /* 
    여기서 "수직/수평 정중앙 배치"를 위해 flex를 쓰고 싶다면,
    별도 .show 클래스 등으로 제어하거나
    JS로 modal.style.display = 'flex' 로 열 때 적용하면 됩니다.
  */
  /* justify-content: center; */
  /* align-items: center; */
}

/* display:flex와 함께 .gift-modal-content가 실제 박스 */
.gift-modal-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ---------------------------
   (B) 닫기 버튼(X)
----------------------------*/
.gift-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}
.gift-modal-close:hover {
  color: #555;
}

/* ---------------------------
   (C) 모달 헤더/바디
----------------------------*/
.gift-modal-header {
  text-align: center;
  margin-bottom: 20px;
}
.gift-modal-header h2 {
  margin: 0;
  font-size: 22px;
  color: #333;
}

.gift-modal-body {
  text-align: center;
}
.gift-modal-body p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
  color: #444;
}

/* 복사 버튼 */
.gift-copy-btn {
  padding: 10px 20px;
  font-size: 16px;
  background: #9F83F5; /* 보라빛 */
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.gift-copy-btn:hover {
  background: #876de0;
}