@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

html {
    background: #f9fafb;
}

button {
    font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
}

#wrap {
    background: #F9FAFB;
}

/* 메인 컨테이너 */
.main-container {
    font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}

/* 왼쪽 메인 콘텐츠 */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 880px;
}

/* 배너 스와이퍼 */
.banner-swiper {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.banner-swiper .swiper-wrapper {
    height: 120px;
}

.banner-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.banner-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.banner-swiper .swiper-pagination {
    bottom: 10px !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10;
    width: auto !important;
    text-align: center !important;
}

.banner-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.banner-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* 히어로 배너 */
.hero-banner {
    background: linear-gradient(135deg, #006d3f 0%, #008850 50%, #00a86b 100%);
    border-radius: 8px;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-banner h2 {
    color: white;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.hero-banner h2 .main-title {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

.hero-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 1;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.dot.active {
    background: white;
}

/* 탭 메뉴 */
.tab-menu {
    background: white;
    border-radius: 8px;
    padding: 8px 20px 20px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-buttons {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #F3F4F6;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #00653B;
    border-bottom-color: #00653B;
    font-weight: 600;
}

/* 콘텐츠 영역 */
.content-area {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 20px;
}

/* 카드 그리드 */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-weight: 500;
}

/* 카드 스타일 */
.content-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 180px;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-grid>div:hover {
    transform: translateY(-3px);
    transition: all 0.3s;
}

.content-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.content-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.content-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* 리스트 콘텐츠 */
.list-content {
    background: white;
    border-radius: 8px;
    padding: 0;
    width: 100%;
    font-weight: 500;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
    cursor: pointer;
    transition: all 0.3s;
}

.list-item:hover {
    background: #F9FAFB
}

.list-item:last-child {
    border-bottom: none;
}

.list-item-title {
    flex: 1;
    font-size: 15px;
    color: #333;
}

.list-item-date {
    color: #999;
    font-size: 13px;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
}

.pagination button:hover {
    background: #F9FAFB
}

/* 하단 프로모션 섹션 */
.promo-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.promo-card {
    background: white;
    border-radius: 12px;
    padding: 0 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* gap: 12px; */
    min-height: 80px;
    border: 1px solid #f0f0f0;
}

.promo-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-bottom: 0;
    opacity: 1;
}

.promo-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.promo-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.4;
    transition: all 0.3s;
    flex: 1;
    opacity: 1;
}

.promo-card:hover h3 {
    opacity: 0;
}

.promo-card p {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #01653B;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-card:hover .promo-overlay {
    opacity: 1;
}

.promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.promo-label {
    font-size: 16px;
    color: white;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.promo-price {
    font-size: 36px;
    color: white;
    font-weight: 700;
    line-height: 1;
}

.promo-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.promo-overlay .promo-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-overlay .promo-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* 오른쪽 사이드바 */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    /* Flex item overflow fix */
}

.sidebar-section {
    background: white;
    border-radius: 8px;
    padding: 15px 15px 12px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-section .section-link {
    color: #008850;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.sidebar-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.sidebar-item:hover {
    background: #F9FAFB
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.sidebar-item p {
    font-size: 12px;
    color: #666;
}

/* 키워드 섹션 */
.keyword-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.keyword-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.keyword-item:hover {
    background: #F9FAFB
}

.keyword-item .badge {
    display: inline-block;
    background: #ff4444;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 5px;
    font-weight: 600;
}

.keyword-item .badge.new {
    background: #4caf50;
}

.keyword-item .title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.keyword-item .count {
    font-size: 11px;
    color: #ff4444;
    margin-top: 3px;
}

/* 가이드 섹션 */
.guide-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding-bottom: 0px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 20px 0px 20px 0px;
}

.guide-item:hover {
    background: #F9FAFB
}

.guide-item:last-child {
    margin-bottom: 0;
}

.guide-item .icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.guide-item .text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.guide-item .text p {
    font-size: 12px;
}

/* 반응형 */
/* 아이패드 에어 및 중간 크기 태블릿 (1024px 이상) - 사이드바 유지 */
@media (min-width: 1024px) and (max-width: 1200px) {
    .main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 15px;
        grid-template-columns: 2.5fr 1fr;
        gap: 15px;
    }

    .main-content {
        max-width: 100%;
    }

    .content-area {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .promo-section {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .hero-banner {
        padding: 40px 50px;
    }

    .hero-banner h2 .main-title {
        font-size: 36px;
    }
}

/* 작은 태블릿 (768px ~ 1023px) - 사이드바 하단 이동 */
@media (max-width: 1023px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .content-area {
        grid-template-columns: 1fr;
    }

    .promo-section {
        grid-template-columns: 1fr 1fr;
    }
}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {
    .hero-banner {
        padding: 40px 30px;
    }

    .hero-banner h2 .main-title {
        font-size: 32px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .promo-section {
        grid-template-columns: 1fr;
    }
}

/* 주요 일정 스타일 */
.schedule-list {
    display: flex;
    flex-direction: column;
}

.schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    cursor: pointer;
}

.schedule-item:hover {
    background: #F9FAFB
}

.schedule-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.schedule-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.schedule-date {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.schedule-badge {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.badge-urgent {
    background: #FF5757;
}

.badge-normal {
    background: #CCCCCC;
}

/* 뉴스레터 섹션 */
.newsletter-section {
    background: #F3F4F6;
    border-radius: 8px;
    padding: 16px 20px;
    /* margin-top: 10px; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    line-height: 1.5;
    margin: 0;
}

.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    padding: 0px 0px 0px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px 0px 0px 8px;
    font-size: 14px;
    font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
    outline: none;
    transition: all 0.3s;
    color: #111928;
    font-weight: 400;
}

.newsletter-input::placeholder {
    color: #BFC4CB;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-button {
    padding: 8px 16px;
    background: #00663b;
    color: white;
    border: none;
    border-radius: 0px 8px 8px 0px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
}

/* 뉴스레터 섹션 반응형 */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 30px;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-title {
        font-size: 22px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-button {
        width: 100%;
    }
}

/* 분할 컨테이너 */
.content-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* 데이터 섹션 */
.data-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 15px;
}

.section-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.more-link {
    font-size: 13px;
    color: #999;
    text-decoration: none;
    font-weight: 500;
}

.data-content {
    width: 100%;
    height: 100%;
}

/* 탭 메뉴 스타일 조정 */
.tab-menu {
    margin-top: 0;
    /* 기존 margin 제거 */
}

/* 콘텐츠 영역 (탭 내부) */
.content-area {
    display: block;
    margin-top: 20px;
    grid-template-columns: none;
    /* 기존 grid 제거 */
}

/* 반응형 */
@media (max-width: 1023px) {
    .content-split-container {
        grid-template-columns: 1fr;
    }
}

/* 급상승 키워드 스타일 */
.ranking-header {
    text-align: center;
    margin-bottom: 20px;
}

.ranking-header .sub-title {
    display: block;
    color: #4285f4;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.ranking-header .main-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.keyword-ranking-container {
    display: flex;
    gap: 30px;
}

.ranking-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 14px;
}

.ranking-item:last-child {
    border-bottom: none;
}

.ranking-item .rank {
    width: 24px;
    color: #999;
    font-weight: 500;
}

.ranking-item .keyword {
    flex: 1;
    color: #333;
    font-weight: 600;
}

.ranking-item .percent {
    color: #ff4444;
    font-weight: 600;
    font-size: 13px;
}

/* 데이터 서브 탭 스타일 */
.data-sub-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F3F4F6;
}

.sub-tab-btn {
    border: none;
    background: transparent;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
}

.sub-tab-btn:hover {
    background: #F9FAFB;
    color: #333;
}

.sub-tab-btn.active {
    background: #00663b;
    color: white;
    font-weight: 600;
}

.data-tab-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

/* 사이드바 배너 섹션 */
.sidebar-banner-container {
    display: flex;
    flex-direction: column;
    min-width: 0;
    /* Flex item overflow fix */
}

.banner-row {
    display: flex;
    gap: 12px;
}

.banner-col {
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.banner-col img,
.banner-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.banner-col:hover img,
.banner-full:hover img {
    transform: scale(1.05);
}

.banner-full {
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 12px;
}

/* 사이드바 배너 스와이퍼 */
.sidebar-banner-swiper {
    width: 100%;
    max-width: 100%;
    /* Prevent overflow */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.banner-group {
    display: flex;
    flex-direction: column;
}

.sidebar-banner-swiper .swiper-slide {
    width: 100%;
}

.sidebar-banner-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* 커스텀 네비게이션 스타일 */
.ad-nav-container {
    display: flex;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    padding: 2px 8px;
    height: 24px;
    background: #fff;
}

.ad-btn-prev,
.ad-btn-next {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #999;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ad-btn-prev:hover,
.ad-btn-next:hover {
    color: #333;
}

.ad-nav-divider {
    width: 1px;
    height: 10px;
    background: #e1e1e1;
    margin: 0 2px;
}

/* 툴팁 스타일 (새 스타일) */
.tooltip-container {
    position: relative;
    /* 툴팁 텍스트 위치의 기준점 */
    display: inline-block;
    cursor: help;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    /* 텍스트 길이에 맞게 조정 */
    background-color: #111928;
    /* 어두운 배경색 */
    color: #fff;
    text-align: left;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    position: absolute;
    z-index: 9998;
    /* 꼬리보다 낮은 z-index */
    bottom: 100%;
    /* 아이콘 바로 위에 위치 */
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    /* 10px 위로 띄우기 (꼬리 공간) */
    transition: opacity 0.3s;
    pointer-events: none;
}

/* 툴팁 꼬리 */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    /* 툴팁 박스 하단에 붙이기 */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #111928 transparent transparent transparent;
    /* 몸체와 같은 색, 아래로 향하는 꼬리 */
    z-index: 9999;
    /* 꼬리가 몸체 위로 오도록 */
}

/* 컨테이너에 마우스를 올렸을 때 툴팁 텍스트를 보이게 함 */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* 하단 와이드 배너 */
.bottom-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    cursor: pointer;
}

.bottom-banner-container img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.bottom-banner-container:hover img {
    transform: scale(1.02);
}

/* 플로팅 가이드 박스 */
.floating-guide-box {
    position: fixed;
    top: 100px;
    right: 40px;
    width: 340px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    animation: slideInRight 0.4s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

.floating-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 16px 20px;
    border-bottom: 1px solid #F3F4F6;
}

.floating-guide-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.floating-guide-header .close-btn {
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.floating-guide-header .close-btn:hover {
    background: #F3F4F6;
    color: #333;
}

.floating-guide-content {
    padding: 16px 20px 16px 20px;
}

.floating-guide-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: #F9FAFB;
}

.floating-guide-item:last-child {
    margin-bottom: 0;
}

.floating-guide-item:hover {
    background: #F3F4F6;
    transform: translateX(4px);
}

.floating-guide-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.floating-guide-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floating-guide-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.floating-guide-banner {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.floating-guide-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.floating-guide-banner:hover img {
    transform: scale(1.05);
}

/* 플로팅 가이드 박스 숨김 상태 */
.floating-guide-box.hidden {
    display: none;
}

/* 반응형 - 플로팅 가이드 박스 */
@media (max-width: 1400px) {
    .floating-guide-box {
        right: 20px;
        width: 320px;
    }
}

@media (max-width: 1200px) {
    .floating-guide-box {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-bottom: 20px;
        animation: none;
    }
}