/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #404040;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul, li {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 상단 탑바 ===== */
.top-bar {
    background: #2c2c2c;
    color: #999;
    font-size: 12px;
    height: 36px;
    line-height: 36px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-right a {
    color: #999;
    margin-left: 15px;
    font-size: 12px;
}

.top-right a:hover {
    color: #ff6e0e;
}

/* ===== 헤더 ===== */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #c9a84c 0%, #f0d878 50%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 10px;
    color: #999;
    letter-spacing: 2px;
    font-weight: 400;
}

.header-contact {
    display: flex;
    gap: 25px;
}

/* 헤더 컨테이너: 로고(좌) - 카카오(진짜 정중앙) - 검색(우) */
.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
}
.header-inner .logo { flex: 0 0 auto; position: relative; z-index: 2; }
.header-search { flex: 0 0 auto; position: relative; z-index: 2; }
.header-contact {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

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

.contact-item i {
    font-size: 20px;
    color: #ff6e0e;
}

/* 헤더 카카오톡 오픈채팅 버튼 */
.header-kakao {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FEE500;
    color: #3C1E1E;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.2px;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.15s ease;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1;
    white-space: nowrap;
}
.header-kakao i { font-size: 17px; }
.header-kakao:hover {
    background: #ffd900;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    color: #3C1E1E;
}
.header-kakao:active { transform: translateY(0); }

.contact-label {
    font-size: 11px;
    color: #999;
    display: block;
}

.contact-number {
    font-size: 18px;
    color: #1a1a1a;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.header-search {
    position: relative;
    width: 250px;
}

.header-search input {
    width: 100%;
    height: 40px;
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 0 45px 0 18px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Noto Sans KR', sans-serif;
}

.header-search input:focus {
    border-color: #ff6e0e;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: #ff6e0e;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.search-btn:hover {
    background: #e55d00;
}

/* ===== 네비게이션 ===== */
.main-nav {
    background: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-list {
    display: flex;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0 28px;
    height: 55px;
    line-height: 55px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-item:hover .nav-link {
    color: #ff6e0e;
    background: rgba(255, 110, 14, 0.1);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100;
}

.nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.sub-menu li:last-child a {
    border-bottom: none;
}

.sub-menu li a:hover {
    color: #ff6e0e;
    background: #fdf5ef;
    padding-left: 25px;
}

/* ===== 메인 배너 ===== */
.main-banner {
    position: relative;
    overflow: hidden;
}

.banner-slide {
    min-height: 450px;
    display: flex !important;
    align-items: center;
    position: relative;
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}
.main-banner-pic { display: block; width: 100%; }

/* 스크롤 배너 섹션 */
.scroll-banner-section {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

.scroll-banner-slider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.scroll-banner-item {
    padding: 0 8px;
}

.scroll-banner-item img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s;
}

.scroll-banner-item img:hover {
    transform: scale(1.03);
}

/* 로고 이미지 */
.logo-img {
    height: 45px;
}

.contact-icon {
    width: 24px;
    height: 24px;
}

/* 상품 이미지 */
.product-img {
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.news-thumb {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}

.news-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.news-thumb .news-thumb-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 스크롤 배너 이미지 */
.scroll-banner-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
    image-rendering: -webkit-optimize-contrast;
}

.scroll-banner-item img:hover {
    transform: scale(1.03);
}

.banner-content {
    padding: 80px 0;
}

.banner-content h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
}

.gold-text {
    background: linear-gradient(135deg, #c9a84c 0%, #f0d878 50%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ff6e0e;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 110, 14, 0.4);
}

.banner-btn:hover {
    background: #e55d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 110, 14, 0.5);
}

/* Slick dots */
.banner-slider .slick-dots {
    bottom: 30px;
}

.banner-slider .slick-dots li button:before {
    color: #fff;
    font-size: 12px;
    opacity: 0.5;
}

.banner-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ff6e0e;
}

/* ===== 섹션 공통 ===== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 15px;
    color: #888;
}

/* ===== 시세 섹션 ===== */
.price-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.price-date {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: #fff;
    border-radius: 20px;
    font-size: 13px;
    color: #888;
    border: 1px solid #e5e5e5;
}

.price-wrapper {
    display: flex;
    gap: 30px;
}

.price-table-wrap {
    flex: 1.2;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.price-table-header {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    padding: 18px 25px;
}

.price-table-header h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.price-table-header h3 i {
    color: #ff6e0e;
    margin-right: 8px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead th {
    background: #f7f7f7;
    padding: 14px 10px;
    font-size: 13px;
    color: #666;
    font-weight: 600;
    border-bottom: 2px solid #e5e5e5;
}

.price-table thead th small {
    display: block;
    font-size: 10px;
    color: #999;
    font-weight: 400;
}

.price-table tbody td {
    padding: 16px 10px;
    text-align: center;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
}

.price-table tbody tr:hover {
    background: #fdf9f5;
}

.item-name {
    font-weight: 700;
    font-size: 14px !important;
    font-family: 'Noto Sans KR', sans-serif !important;
}

.gold-label {
    color: #c9a84c;
}

.platinum-label {
    color: #8b8b8b;
}

.silver-label {
    color: #a0a0a0;
}

.price-buy, .price-sell {
    font-weight: 700;
    color: #1a1a1a;
}

.change {
    font-size: 12px !important;
    font-weight: 600;
}

.change.up {
    color: #ff6e0e;
}

.change.down {
    color: #2962ff;
}

.change.same {
    color: #999;
}

/* 국제시세 카드 */
.intl-price-wrap {
    flex: 0.8;
}

.intl-price-wrap .price-table-header {
    border-radius: 16px 16px 0 0;
}

.intl-price-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.intl-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.intl-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.intl-card-header {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gold-card .intl-card-header {
    background: linear-gradient(135deg, #f5e6c8, #fdf3e0);
}

.silver-card .intl-card-header {
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
}

.platinum-card .intl-card-header {
    background: linear-gradient(135deg, #e0e8f0, #edf2f7);
}

.palladium-card .intl-card-header {
    background: linear-gradient(135deg, #e8e0f0, #f0edf7);
}

.metal-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.gold-card .metal-icon {
    background: #c9a84c;
    color: #fff;
}

.silver-card .metal-icon {
    background: #a0a0a0;
    color: #fff;
}

.platinum-card .metal-icon {
    background: #7a8ea0;
    color: #fff;
}

.palladium-card .metal-icon {
    background: #8a7aa0;
    color: #fff;
}

.metal-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.intl-card-body {
    padding: 12px 15px;
}

.intl-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}

.intl-price-row:first-child {
    border-bottom: 1px solid #f5f5f5;
}

.intl-price-row .label {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.intl-price-row .value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Roboto', sans-serif;
}

.change-pct {
    font-size: 11px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.change-pct.up {
    color: #ff6e0e;
}

.change-pct.down {
    color: #2962ff;
}

/* ===== 차트 섹션 ===== */
.chart-section {
    padding: 70px 0;
    background: #fff;
}

.chart-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.chart-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 15px;
}

.chart-tabs {
    display: flex;
    gap: 5px;
}

.chart-tab {
    padding: 8px 20px;
    border: none;
    background: #f0f0f0;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Sans KR', sans-serif;
}

.chart-tab.active {
    background: #1a1a1a;
    color: #fff;
}

.chart-tab:hover:not(.active) {
    background: #e0e0e0;
}

.chart-period {
    display: flex;
    gap: 5px;
}

.period-btn {
    padding: 6px 16px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Sans KR', sans-serif;
}

.period-btn.active {
    border-color: #ff6e0e;
    color: #ff6e0e;
    background: #fff5ef;
}

.period-btn:hover:not(.active) {
    border-color: #ccc;
}

.chart-container {
    display: flex;
    gap: 0;
}

.chart-box {
    flex: 1;
    padding: 25px;
    min-height: 350px;
}

.chart-box:first-child {
    border-right: 1px solid #f0f0f0;
}

.chart-box h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ===== 상품 섹션 ===== */
.products-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.product-category-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.product-tab {
    padding: 10px 28px;
    border: 2px solid #e5e5e5;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Sans KR', sans-serif;
}

.product-tab.active {
    border-color: #ff6e0e;
    color: #ff6e0e;
    background: #fff5ef;
}

.product-tab:hover:not(.active) {
    border-color: #ccc;
    background: #fafafa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 6.8px 18.8px 29.4px 0.6px rgba(187, 164, 153, 0.18);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 6.8px 18.8px 29.4px 0.6px rgba(187, 164, 153, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    background: #ff6e0e;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 12px;
    z-index: 1;
}

.product-badge.hot {
    background: #e53935;
}

.product-img {
    height: 220px;
    overflow: hidden;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.product-img-placeholder i {
    font-size: 48px;
}

.goldbar-img {
    background: linear-gradient(135deg, #f5e6c8 0%, #fdf3e0 50%, #f5e6c8 100%);
    color: #c9a84c;
}

.silverbar-img {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 50%, #e8e8e8 100%);
    color: #888;
}

.coin-img {
    background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 50%, #fff3e0 100%);
    color: #d4a017;
}

.gift-img {
    background: linear-gradient(135deg, #fce4ec 0%, #fff5f7 50%, #fce4ec 100%);
    color: #c9a84c;
}

.etc-img {
    background: linear-gradient(135deg, #e8eaf6 0%, #f3f4fa 50%, #e8eaf6 100%);
    color: #7a8ea0;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-desc {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.current-price {
    font-size: 20px;
    font-weight: 800;
    color: #ff6e0e;
    font-family: 'Roboto', sans-serif;
}

.price-unit {
    font-size: 13px;
    color: #999;
}

/* ===== 뉴스 섹션 ===== */
.news-section {
    padding: 70px 0;
    background: #fff;
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 35px;
}

.news-tab {
    padding: 10px 28px;
    border: none;
    background: #f0f0f0;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Sans KR', sans-serif;
}

.news-tab.active {
    background: #1a1a1a;
    color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.news-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.news-thumb {
    height: 180px;
    overflow: hidden;
}

.news-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-thumb-placeholder i {
    font-size: 40px;
    color: rgba(255,255,255,0.2);
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 12px;
    color: #999;
    font-family: 'Roboto', sans-serif;
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 8px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== 매장 섹션 ===== */
.store-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.store-section .section-title {
    color: #fff;
}

.store-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.store-count {
    color: #ff6e0e;
    font-size: 24px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.store-region {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
}

.store-region:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,110,14,0.3);
}

.store-region h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.store-region h4 i {
    color: #ff6e0e;
    margin-right: 6px;
}

.store-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.store-tag {
    padding: 5px 12px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    border-radius: 12px;
    transition: all 0.2s;
    cursor: pointer;
}

.store-tag:hover {
    background: #ff6e0e;
    color: #fff;
}

/* ===== 푸터 ===== */
.footer {
    background: #1a1a1a;
    color: #888;
    padding: 40px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
}

.footer-logo h3 {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #c9a84c 0%, #f0d878 50%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo span {
    font-size: 10px;
    color: #666;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #888;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links .privacy {
    color: #ff6e0e;
    font-weight: 700;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    gap: 30px;
}

.footer-info p {
    font-size: 12px;
    color: #666;
    line-height: 2;
}

.footer-family h4 {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
}

.family-links {
    display: flex;
    gap: 12px;
}

.family-links a {
    font-size: 12px;
    color: #666;
    padding: 4px 10px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.2s;
}

.family-links a:hover {
    border-color: #ff6e0e;
    color: #ff6e0e;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 12px;
    color: #555;
}

/* ===== 플로팅 버튼 ===== */
.floating-btns {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-decoration: none;
}

.float-btn i {
    font-size: 18px;
}

.float-btn span {
    font-size: 9px;
    font-weight: 700;
    margin-top: 2px;
}

.call-btn {
    background: #ff6e0e;
    color: #fff;
}

.call-btn:hover {
    background: #e55d00;
    transform: scale(1.1);
}

.kakao-btn {
    background: #fee500;
    color: #3c1e1e;
}

.kakao-btn:hover {
    background: #e6cf00;
    transform: scale(1.1);
}

.top-btn {
    background: #1a1a1a;
    color: #fff;
}

.top-btn:hover {
    background: #333;
    transform: scale(1.1);
}

/* ===== 애니메이션 ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== 로딩 스피너 ===== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f0f0f0;
    border-top: 2px solid #ff6e0e;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
