/* ================================================
   예담플라워 - 노먼화환 구조 기반
   nor-man.co.kr 레이아웃 & UX 동일 적용
================================================ */

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

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  background: #fff;
  color: #222;
  font-size: 14px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

/* ============ HEADER (PC) ============ */
.header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.header .fixed {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header .logo {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.5px;
}
.header .category {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  transition: color 0.2s;
}
.header .category:hover { color: #1a1a1a; }
.header .right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .menu {
  font-size: 13px;
  color: #777;
  transition: color 0.2s;
}
.header .menu:hover { color: #222; }
.header .mypage {
  font-size: 13px;
  color: #777;
}
.header-done { height: 60px; }

/* ============ MOBILE HEADER ============ */
.d-header {
  display: none;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.d-header .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 54px;
}
.d-header .logo {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.d-header .modal_btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none;
}
.d-header .modal_btn img { width: 22px; }

/* ============ MOBILE MODAL ============ */
.d-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
}
.d-modal.on { display: block; }
.modal_popup {
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
}
.modal_popup .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}
.modal_popup .close_btn {
  width: 28px; height: 28px;
  background: #eee;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
}
.modal_popup .close_btn::after { content: '✕'; }
.modal_popup .login {
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.modal_popup .text_01 {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}
.modal_popup .bt a {
  display: block;
  text-align: center;
  padding: 10px;
  background: #222;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
.modal_popup .top-menu div {
  border-bottom: 1px solid #f0f0f0;
}
.modal_popup .top-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.modal_popup .top-menu a:hover { background: #f8f8f8; }
body.modal-open, html.modal-open { overflow: hidden; }

/* ============ INDEX LAYOUT ============ */
.index { padding-bottom: 80px; }
.layout { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ============ SECTION01 - 배너 ============ */
.section01 { margin-bottom: 40px; }
.section01 img { width: 100%; }
.section01 .pc { display: block; }
.section01 .mo { display: none; }

/* ============ SECTION02 - 상품 그리드 ============ */
.section02 { margin-bottom: 48px; }

.lv01 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  padding: 32px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #222;
  margin-bottom: 20px;
}
.lv01 a {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  border: 1px solid #ddd;
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}
.lv01 a:hover { border-color: #222; color: #222; }

.lv02 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  padding: 40px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #222;
  margin-bottom: 20px;
}
.lv02 a {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  border: 1px solid #ddd;
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}
.lv02 a:hover { border-color: #222; color: #222; }

/* .line01 기본 정의는 하단 '상품 카테고리 탭' 섹션에서 관리 */

.porduct {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}
.porduct:hover { transform: translateY(-4px); }
.porduct_name {
  font-size: 14px;
  font-weight: 500;
  color: #222;
}
.porduct_price {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
.porduct_price span {
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
  text-decoration: line-through;
  margin-left: 6px;
}

/* ============ SECTION03 - 전화/카톡 CTA ============ */
.section03 { margin-bottom: 48px; }
.section03 .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.section03 .call,
.section03 .kakao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-radius: 12px;
  transition: opacity 0.2s;
}
.section03 .call:hover,
.section03 .kakao:hover { opacity: 0.88; }
.section03 .call {
  background: #222;
}
.section03 .kakao {
  background: #FEE500;
}
.section03 .left { display: flex; flex-direction: column; gap: 4px; }
.lv07 {
  font-size: 20px;
  font-weight: 700;
}
.section03 .call .lv07 { color: #fff; }
.section03 .kakao .lv07 { color: #222; }
.lv08 {
  font-size: 13px;
}
.section03 .call .lv08 { color: rgba(255,255,255,0.7); }
.section03 .kakao .lv08 { color: #555; }
.section03 .call img,
.section03 .kakao img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* ============ SECTION04 - 장례식장 목록 ============ */
.section04 { margin-bottom: 40px; }

.line02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 16px;
  border-bottom: 2px solid #222;
  margin-bottom: 0;
  gap: 16px;
}
.lv03 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

/* 검색바 */
.search {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  flex: 1;
  max-width: 360px;
  transition: border-color 0.2s;
}
.search:focus-within { border-color: #222; }
.search input {
  flex: 1;
  padding: 9px 16px;
  border: none;
  outline: none;
  font-size: 13px;
  color: #333;
  background: transparent;
}
.search input::placeholder { color: #bbb; }
.search button {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #555;
  flex-shrink: 0;
}
.search button img { width: 18px; }
.search button svg { width: 18px; height: 18px; }

.line03 { padding-top: 4px; }

/* 장례식장 리스트 아이템 */
.list {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 0;
  transition: background 0.15s;
}
.list:hover { background: #fafafa; margin: 0 -8px; padding-left: 8px; padding-right: 8px; }
.lv04 {
  font-size: 12px;
  color: #999;
  width: 90px;
  flex-shrink: 0;
}
.lv05 {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  flex: 1;
}
.lv06 {
  font-size: 12px;
  color: #aaa;
  flex: 2;
  text-align: right;
  padding-left: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============ 페이지네이션 ============ */
.pg_wrap {
  display: flex;
  justify-content: center;
  padding: 28px 0 0;
}
.pg {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pg_current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: #222;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
.pg_page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  color: #555;
  transition: all 0.2s;
}
.pg_page:hover { border-color: #222; color: #222; }
.pg_prev, .pg_next, .pg_start, .pg_end {
  width: auto;
  padding: 0 10px;
  font-size: 13px;
}
.sound_only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============ 플로팅 버튼 (전화/카톡) ============ */
.quick-button {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
}
.quick-button .fixed {
  display: flex;
}
.quick-button .call,
.quick-button .kakao {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  font-size: 15px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.quick-button .call:hover,
.quick-button .kakao:hover { opacity: 0.9; }
.quick-button .call {
  background: #222;
  color: #fff;
}
.quick-button .kakao {
  background: #FEE500;
  color: #222;
}

/* ============ FOOTER ============ */
.bottom {
  background: #f7f7f7;
  border-top: 1px solid #eee;
  padding: 32px 0;
  margin-bottom: 52px; /* 플로팅 버튼 높이 */
}
.bottom .layout {}
.bottom .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}
.bottom .line .left {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
.bottom .line .right {
  display: flex;
  gap: 16px;
}
.bottom .line .menu {
  font-size: 12px;
  color: #888;
  transition: color 0.2s;
}
.bottom .line .menu:hover { color: #222; }
.bottom .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.bottom .info .form {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-bottom: 6px;
}
.bottom .info .form span {
  font-size: 12px;
  color: #999;
}
.bottom .copy {
  font-size: 11px;
  color: #bbb;
  margin-top: 8px;
}
.bottom .call {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  text-align: right;
}
.bottom .call_info {
  font-size: 12px;
  color: #aaa;
  text-align: right;
  margin-top: 4px;
}

/* ============ VENUE DETAIL PAGE ============ */

/* 브레드크럼 */
.breadcrumb {
  background: #fafafa;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.breadcrumb .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #aaa;
}
.breadcrumb a:hover { color: #222; }
.breadcrumb .sep { color: #ddd; }
.breadcrumb .cur { color: #555; }

/* 장례식장 히어로 */
.venue-hero {
  background: #222;
  padding: 36px 0;
}
.venue-hero .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.venue-hero .tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.venue-hero h1 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.venue-hero .sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.venue-hero .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.venue-hero .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* 상세 레이아웃 */
.venue-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 100px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

/* 섹션 카드 */
.v-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.v-card-head {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
.v-card-body { padding: 20px; }

/* 홀 소개 */
.hall-intro {
  font-size: 13px;
  color: #555;
  line-height: 1.9;
}
.hall-intro p { margin-bottom: 8px; }
.hall-intro strong { color: #222; font-weight: 600; }

/* 상품 그리드 (상세) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product-item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.product-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ddd;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info { padding: 10px 12px 12px; }
.product-name {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}
.product-price {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.product-btns {
  display: flex;
  gap: 6px;
}
.product-btns a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 4px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.product-btns a:hover { opacity: 0.85; }
.btn-detail {
  background: #f0f0f0;
  color: #444;
}
.btn-order {
  background: #222;
  color: #fff;
}

/* 배송 안내 */
.delivery-html {
  font-size: 13px;
  color: #555;
  line-height: 1.9;
}
.delivery-html p { margin-bottom: 10px; }
.delivery-html strong { color: #222; font-weight: 600; }
.notice-box {
  background: #f8f8f8;
  border-left: 3px solid #222;
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  font-size: 12px;
  color: #666;
  line-height: 1.8;
  margin-top: 14px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  background: #fff;
  transition: background 0.15s;
}
.faq-q:hover { background: #fafafa; }
.faq-q .q-mark {
  width: 22px; height: 22px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-q .arrow {
  margin-left: auto;
  font-size: 11px;
  color: #bbb;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 12px 16px 14px 48px;
  font-size: 13px;
  color: #666;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* 이웃 장례식장 */
.nearby-list { display: flex; flex-direction: column; gap: 0; }
.nearby-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 10px;
  transition: background 0.15s;
}
.nearby-item:last-child { border-bottom: none; }
.nearby-item:hover { background: #fafafa; margin: 0 -8px; padding-left: 8px; padding-right: 8px; }
.nearby-region {
  font-size: 11px;
  color: #aaa;
  width: 60px;
  flex-shrink: 0;
}
.nearby-name {
  font-size: 13px;
  font-weight: 500;
  color: #222;
  flex: 1;
}

/* 사이드바 */
.venue-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 상담 CTA */
.sidebar-cta {
  background: #222;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.sidebar-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.sidebar-cta-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.6;
}
.sidebar-cta-phone {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.sidebar-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-cta-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.sidebar-cta-btns a:hover { opacity: 0.88; }
.btn-call {
  background: #fff;
  color: #222;
}
.btn-kakao {
  background: #FEE500;
  color: #222;
}

/* 기본 정보 */
.info-rows { display: flex; flex-direction: column; }
.info-row {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}
.info-row:last-child { border-bottom: none; }
.info-label {
  font-weight: 600;
  color: #999;
  width: 54px;
  flex-shrink: 0;
}
.info-val { color: #444; flex: 1; }
.info-val a { color: #222; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* 배달 요약 */
.delivery-summary { font-size: 12px; color: #666; line-height: 1.9; }
.delivery-summary strong { color: #222; }

/* 네이버지도 */
.naver-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  background: #03C75A;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  transition: opacity 0.2s;
}
.naver-map-btn:hover { opacity: 0.88; }

/* 로딩 / 에러 */
.loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 14px;
}
.spinner {
  width: 36px; height: 36px;
  border: 3px solid #eee;
  border-top-color: #222;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-txt { font-size: 13px; color: #aaa; }

.empty-box {
  text-align: center;
  padding: 60px 20px;
}
.empty-icon { font-size: 40px; margin-bottom: 12px; }
.empty-title { font-size: 16px; font-weight: 700; color: #222; margin-bottom: 6px; }
.empty-desc { font-size: 13px; color: #aaa; }

/* 스켈레톤 */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 4px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* 검색 결과 없음 */
.no-result {
  text-align: center;
  padding: 40px;
  font-size: 14px;
  color: #aaa;
}

/* ============ 지역 탭 ============ */
.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 0 8px;
}
.rtab {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid #ddd;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.rtab:hover { border-color: #222; color: #222; }
.rtab.active {
  background: #222;
  border-color: #222;
  color: #fff;
}

/* 결과 카운트 */
.result-info {
  font-size: 13px;
  color: #aaa;
  padding: 6px 0 10px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .venue-wrap { grid-template-columns: 1fr; }
  .venue-sidebar { position: static; order: -1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header { display: none; }
  .header-done { height: 54px; }
  .d-header { display: block; }

  .layout { padding: 0 14px; }

  /* line01 모바일: 하단 상품 카테고리 섹션에서 관리 */
  .lv01, .lv02 { font-size: 16px; padding: 24px 0 12px; }
  .section03 .box { grid-template-columns: 1fr; gap: 10px; }
  .lv07 { font-size: 17px; }

  .lv06 { display: none; }
  .lv04 { width: 72px; font-size: 11px; }
  .lv05 { font-size: 13px; }

  .quick-button .call,
  .quick-button .kakao { height: 48px; font-size: 14px; }

  .bottom { margin-bottom: 48px; }
  .bottom .info { flex-direction: column; align-items: flex-start; }
  .bottom .call { text-align: left; }
  .bottom .call_info { text-align: left; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-hero h1 { font-size: 20px; }
}

@media (max-width: 480px) {
  /* line01 480px: 하단 상품 카테고리 섹션에서 관리 */
}

/* ============ SKELETON CARD ============ */
.skeleton-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============ 상품 카드 래퍼 (주문버튼 포함) ============ */
.porduct-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.porduct-wrap .porduct {
  flex: 1;
}
.porduct_order_btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 11px 0;
  background: #222;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  letter-spacing: 0.2px;
  /* 모바일 터치 영역 확보 */
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.porduct_order_btn:hover { opacity: 0.82; color: #fff; }
.porduct_order_btn:active { opacity: 0.7; }

/* ============ 상품 그리드 페이지네이션 ============ */
.prod-pg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 4px;
}
.prod-pg-btn {
  padding: 6px 16px;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.prod-pg-btn:hover {
  border-color: #222;
  color: #222;
}
.prod-pg-info {
  font-size: 13px;
  color: #aaa;
  min-width: 44px;
  text-align: center;
}

/* ============ SECTION03 – 3열 CTA ============ */
.section03 .box3 {
  grid-template-columns: repeat(3, 1fr);
}
.section03 .order-quick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-radius: 12px;
  background: #1a6b3a;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}
.section03 .order-quick:hover { opacity: 0.88; }
.section03 .order-quick .lv07 { color: #fff; font-size: 18px; font-weight: 700; }
.section03 .order-quick .lv08 { color: rgba(255,255,255,0.65); font-size: 13px; }

/* 헤더 간편주문 버튼 */
.order-modal-btn {
  background: #1a6b3a;
  color: #fff !important;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.order-modal-btn:hover { opacity: 0.85; }

/* ============ 간편주문서 모달 ============ */
.order-modal {
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.order-modal.on {
  display: flex !important;
}
.order-modal-box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  margin: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
}
.om-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.om-close {
  width: 30px; height: 30px;
  background: #f0f0f0;
  border-radius: 50%;
  font-size: 14px;
  color: #555;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.om-close:hover { background: #e0e0e0; }
.om-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.om-guide {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  background: #f8f8f8;
  padding: 12px 14px;
  border-radius: 8px;
}
.om-guide strong { color: #1a6b3a; }
.om-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.om-field-row {
  display: flex;
  gap: 10px;
}
.om-field-sm { max-width: 90px; flex: 0 0 90px; }
.om-label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
}
.req { color: #e53935; }
.om-input {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #ddd;
  border-radius: 7px;
  font-size: 14px;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.om-input:focus { border-color: #222; }
.om-input::placeholder { color: #ccc; font-size: 12px; }
.om-notice {
  font-size: 11px;
  color: #aaa;
  line-height: 1.8;
  background: #fafafa;
  padding: 10px 12px;
  border-radius: 6px;
  border-left: 3px solid #ddd;
}
.om-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.om-btn-kakao {
  width: 100%;
  padding: 13px;
  background: #FEE500;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}
.om-btn-kakao:hover { opacity: 0.88; }
.om-btn-sms {
  width: 100%;
  padding: 13px;
  background: #222;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}
.om-btn-sms:hover { opacity: 0.85; }

/* 사이드바 간편주문서 버튼 */
.btn-order-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  background: #1a6b3a;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}
.btn-order-form:hover { opacity: 0.88; }

/* ============ 장례식장 소개 템플릿 스타일 ============ */
.intro-badge {
  display: inline-block;
  background: #f0f4f8;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}
.hall-intro p {
  margin-bottom: 12px;
  font-size: 14px;
  color: #444;
  line-height: 1.9;
}
.intro-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 8px;
}
.intro-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}
.intro-info-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.intro-info-item strong {
  display: block;
  font-size: 11px;
  color: #999;
  font-weight: 600;
  margin-bottom: 2px;
}
.intro-info-item a {
  color: #222;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.intro-cta-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.8;
  margin-top: 6px;
}
.intro-cta-box strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 6px;
}
.intro-highlight {
  display: inline-block;
  margin-top: 6px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
}

@media (max-width: 600px) {
  .intro-info-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ============ 반응형 – 3열 CTA 모바일 ============ */
@media (max-width: 768px) {
  .section03 .box3 {
    grid-template-columns: 1fr;
  }
  .section03 .order-quick { padding: 16px 18px; }
  .section03 .order-quick .lv07 { font-size: 16px; }
  .om-field-row { flex-direction: column; }
  .om-field-sm { max-width: 100%; flex: 1; }
}
@media (max-width: 480px) {
  .order-modal-box { margin: 10px; max-height: 96vh; }
  .om-body { padding: 14px; gap: 11px; }
}

/* ============ INFO ROWS (사이드바 내부) ============ */
.v-card .info-rows {
  padding: 0 16px;
}
.v-card .info-rows .info-row {
  padding: 10px 0;
}

/* ============ NEARBY CARD (같은 지역) ============ */
.nearby-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.nearby-card-head {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

/* ============ 모바일 플로팅 CTA 상세 페이지 ============ */
@media (max-width: 768px) {
  .venue-wrap {
    padding: 20px 14px 120px;
  }
  .venue-hero {
    padding: 24px 0;
  }
  .venue-hero h1 {
    font-size: 19px;
    line-height: 1.4;
  }
  .venue-hero .sub {
    font-size: 12px;
  }
  .venue-hero .meta-item {
    font-size: 12px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-info {
    padding: 8px 10px 10px;
  }
  .product-name { font-size: 12px; }
  .product-price { font-size: 13px; }
  .product-btns a { font-size: 11px; padding: 6px 3px; }
  .sidebar-cta-phone { font-size: 18px; }
  .v-card-head { font-size: 14px; padding: 12px 16px; }
  .v-card-body { padding: 14px 16px; }
  .info-label { width: 46px; font-size: 12px; }
  .info-val { font-size: 12px; }
  .faq-q { font-size: 12px; padding: 11px 14px; }
  .faq-a { font-size: 12px; padding: 10px 14px 12px 40px; }
  .nearby-item { padding: 10px 0; }
  .nearby-name { font-size: 12px; }
}

/* ============ 모바일 장례식장 리스트 ============ */
@media (max-width: 768px) {
  .section04 { margin-bottom: 20px; }
  .line02 { flex-direction: column; align-items: flex-start; gap: 10px; }
  .search { max-width: 100%; width: 100%; }
  .region-tabs { gap: 5px; padding: 10px 0 6px; }
  .rtab { font-size: 12px; padding: 4px 11px; }
  .list { padding: 12px 0; }
  .pg_page, .pg_current { width: 30px; height: 30px; font-size: 12px; }
}

/* ============ 홈 - 섹션 간격 모바일 ============ */
@media (max-width: 480px) {
  .section03 .call,
  .section03 .kakao { padding: 16px 18px; }
  .lv07 { font-size: 16px; }
  .lv08 { font-size: 12px; }
  .lv03 { font-size: 17px; }
  .quick-button .call,
  .quick-button .kakao { height: 46px; font-size: 13px; }
}

/* ============================================================
   상품 카테고리 탭 (근조화환 / 축하화환 / 관엽식물)
============================================================ */
.prod-cat-tabs {
  display: flex;
  gap: 0;
  padding: 32px 0 0;
  border-bottom: 2px solid #222;
  margin-bottom: 0;
}
.pcat-tab {
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 700;
  color: #999;
  background: #fff;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  letter-spacing: -0.3px;
  transition: all 0.18s;
  position: relative;
  bottom: -2px;
}
.pcat-tab:hover { color: #222; }
.pcat-tab.active {
  color: #222;
  border-bottom: 3px solid #222;
  background: #fff;
}

/* 카테고리 섹션 타이틀 (탭 아래) */
.prod-cat-header .lv01 {
  border-bottom: none;
  padding-top: 18px;
  padding-bottom: 12px;
}

/* ── 상품 그리드: PC 기본 5열 ── */
.line01 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
/* 관엽식물: PC 6열 */
.line01--plant {
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

/* ── 상품 이미지 fallback ── */
.porduct-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.porduct-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.porduct-img-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ccc;
  background: #f5f5f5;
  border-radius: 8px;
}

/* ── 배송사진 섹션 ── */
.delivery-photos-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}
.dp-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.dp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.dp-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dp-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.dp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.dp-item:hover img { opacity: 0.92; }

/* ── 모바일 반응형 ── */
@media (max-width: 900px) {
  .line01 { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .line01--plant { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}

@media (max-width: 768px) {
  .prod-cat-tabs { padding-top: 20px; }
  .pcat-tab { padding: 9px 18px; font-size: 14px; font-weight: 700; }

  /* ★ 모바일: 상품 그리드 2열 고정 */
  .line01,
  .line01--plant,
  .line01--funeral,
  .line01--celebrate {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  /* 배송사진: 모바일 2열 */
  .dp-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .dp-title { font-size: 14px; }
  .delivery-photos-section { margin-top: 28px; padding-top: 20px; }
}

@media (max-width: 480px) {
  .pcat-tab { padding: 8px 13px; font-size: 13px; }
  .line01,
  .line01--plant,
  .line01--funeral,
  .line01--celebrate {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .porduct_name { font-size: 13px; line-height: 1.4; }
  .porduct_price { font-size: 14px; font-weight: 700; }
  .porduct_order_btn { font-size: 13px; padding: 10px 0; border-radius: 7px; }
  .dp-grid { gap: 6px; }
}

/* ============================================================
   VENUE TYPE TABS (장례식장 ↔ 웨딩홀 전환 탭)
============================================================ */
.venue-type-tabs {
  display: flex;
  gap: 8px;
  padding: 24px 0 0;
  margin-bottom: 0;
}
.vtype-tab {
  padding: 9px 24px;
  border-radius: 24px;
  border: 2px solid #ddd;
  font-size: 14px;
  font-weight: 700;
  color: #777;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.3px;
}
.vtype-tab:hover { border-color: #1a6b3a; color: #1a6b3a; }
.vtype-tab.active {
  background: #1a6b3a;
  border-color: #1a6b3a;
  color: #fff;
}

/* ============================================================
   WEDDING PAGE – 히어로
============================================================ */
.wedding-hero {
  background: linear-gradient(135deg, #1a6b3a 0%, #0f4a27 100%);
  padding: 52px 0 44px;
}
.wedding-hero .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.wedding-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.wedding-hero-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.wedding-hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  line-height: 1.6;
}
.wedding-hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.wh-btn-call {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #fff;
  color: #1a6b3a;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.wh-btn-call:hover { opacity: 0.88; }
.wh-btn-kakao {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #FEE500;
  color: #222;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.wh-btn-kakao:hover { opacity: 0.88; }
.wh-btn-order {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.wh-btn-order:hover { background: rgba(255,255,255,0.25); }

/* ── 안내 배지 바 ── */
.wedding-notice-bar {
  background: #f0f7f3;
  border-bottom: 1px solid #d6eadd;
  padding: 10px 0;
}
.wedding-notice-bar .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 12px;
  font-weight: 600;
  color: #1a6b3a;
}

/* ── 섹션 공통 제목 ── */
.wedding-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  padding: 40px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #222;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.see-all-btn {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  border: 1px solid #ddd;
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}
.see-all-btn:hover { border-color: #1a6b3a; color: #1a6b3a; }

/* ── 축하화환 상품 그리드 (웨딩 페이지) ── */
.wedding-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.w-product-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.w-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}
.w-product:hover { transform: translateY(-4px); }
.w-product img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f5;
}
.w-product-name {
  font-size: 14px;
  font-weight: 500;
  color: #222;
}
.w-product-price {
  font-size: 15px;
  font-weight: 700;
  color: #1a6b3a;
}
.w-product-order-btn {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 8px 0;
  background: #1a6b3a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.w-product-order-btn:hover { opacity: 0.82; color: #fff; }

/* ── 주문 방법 안내 ── */
.wedding-how-section { margin-bottom: 48px; }
.wedding-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.wedding-how-item {
  border: 1px solid #e8f5ee;
  border-radius: 12px;
  padding: 24px 20px;
  background: #f9fdf9;
  text-align: center;
}
.how-num {
  font-size: 28px;
  font-weight: 900;
  color: #d0e8d8;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.how-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a6b3a;
  margin-bottom: 8px;
}
.how-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}
.wedding-order-info {
  background: #f8f8f8;
  border-left: 4px solid #1a6b3a;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
}
.woi-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.woi-list { display: flex; flex-direction: column; gap: 6px; }
.woi-item { font-size: 13px; color: #555; line-height: 1.6; }

/* ── 웨딩홀 목록 섹션 ── */
.wedding-list-section { margin-bottom: 60px; }

/* 웨딩홀 리스트 아이템 (주문 버튼 포함) */
.wedding-list-item {
  display: flex;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 0;
  transition: background 0.15s;
}
.wedding-list-item:hover { background: #f9fdf9; margin: 0 -8px; padding-left: 8px; padding-right: 8px; }
.wedding-order-quick-btn {
  flex-shrink: 0;
  margin-left: 10px;
  padding: 5px 14px;
  background: #1a6b3a;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.wedding-order-quick-btn:hover { opacity: 0.82; color: #fff; }

/* 시/군/구 서브탭 */
.city-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 6px 0 6px;
}
.ctab {
  padding: 4px 12px;
  border-radius: 16px;
  border: 1.5px solid #c8e6d4;
  font-size: 12px;
  font-weight: 500;
  color: #4a8f64;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.ctab:hover { border-color: #1a6b3a; color: #1a6b3a; }
.ctab.active {
  background: #1a6b3a;
  border-color: #1a6b3a;
  color: #fff;
}

/* ── 웨딩 CTA 섹션 ── */
.wedding-cta-section {
  background: linear-gradient(135deg, #1a6b3a 0%, #0f4a27 100%);
  padding: 48px 0 60px;
  text-align: center;
  margin-bottom: 52px;
}
.wedding-cta-section .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.wedding-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.wedding-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.wedding-cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 웨딩 상품 섹션 ── */
.wedding-products-section { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE – 웨딩홀
============================================================ */
@media (max-width: 900px) {
  .wedding-products-grid { grid-template-columns: repeat(3, 1fr); }
  .wedding-how-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .wedding-hero { padding: 36px 0 30px; }
  .wedding-hero-title { font-size: 22px; }
  .wedding-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wedding-how-grid { grid-template-columns: 1fr; gap: 12px; }
  .wedding-how-item { padding: 18px 16px; }
  .venue-type-tabs { padding: 16px 0 0; }
  .vtype-tab { padding: 7px 18px; font-size: 13px; }
  .wedding-notice-bar .inner { gap: 6px 16px; font-size: 11px; }
  .wedding-cta-section { padding: 36px 0 52px; }
  .wedding-cta-title { font-size: 20px; }
}

@media (max-width: 480px) {
  .wedding-hero-title { font-size: 19px; }
  .wedding-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .w-product-name { font-size: 13px; }
  .w-product-price { font-size: 13px; }
  .wedding-section-title { font-size: 17px; padding: 28px 0 12px; }
  .wh-btn-call, .wh-btn-kakao, .wh-btn-order { font-size: 13px; padding: 10px 16px; }
}
