/* 사용자 프로필 드롭다운 스타일 */
.user-profile-container {
    position: relative;
    display: inline-block;
}

.user-profile {
    position: relative;
    cursor: pointer;
    padding: 6px 12px;
    background: rgba(253, 143, 159, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(253, 143, 159, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.user-profile:hover {
    background: rgba(253, 143, 159, 0.2);
    border-color: rgba(253, 143, 159, 0.5);
}

.user-name {
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .user-profile {
        padding: 4px 8px;
    }
    
    .user-name {
        font-size: 12px;
    }
    
    .user-profile i {
        font-size: 16px !important;
        margin-right: 6px !important;
    }
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.user-profile:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: #f8f9fa;
    color: #fd8f9f;
}

.user-dropdown a:first-child {
    border-radius: 10px 10px 0 0;
}

.user-dropdown a:last-child {
    border-radius: 0 0 10px 10px;
}

/* 푸터 스타일 */
.footer-logo img {
    max-height: 50px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #fd8f9f;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #fd8f9f;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list-item {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
}

.footer-list-label {
    font-weight: 500;
    margin-right: 8px;
    color: #fff;
    min-width: 80px;
}

.contact-item {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.contact-item i {
    margin-right: 10px;
    color: #fd8f9f;
    width: 20px;
    text-align: center;
}

/* 추가 스타일 */
.swiper-slide {
    height: 520px;
}
.vip-badge {
    background: linear-gradient(135deg, #fd8f9f 0%, #fd8f9f 100%);
    color: #fff;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-left: 10px;
}

/* Loading Indicator Styles */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    text-align: center;
    background-color: #fff;
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.loading-spinner .spinner-border {
    width: 40px;
    height: 40px;
}

.loading-text {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
/* contact.html 추가 스타일 */
:root {
    --primary-color: #fd8f9f;
    --secondary-color: #70A6B1;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* 회원가입 버튼 색상 통일 */
.register-btn, .theme-btn {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* 사용자 아이콘 색상 통일 */
.fas.fa-user-circle {
    color: var(--primary-color) !important;
}

/* 금액 표시 색상 통일 */
.user-profile span[style*="color:#3a7afe"], 
.user-profile span[style*="color: #3a7afe"] {
    color: var(--secondary-color) !important;
}

.body_wrap {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.apply_notice2 {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
}

.apply_notice2 p {
    color: #6c757d;
    line-height: 1.8;
}

b_line {
    width: 100%;
    height: 1px;
    background-color: #e9ecef;
    margin: 20px 0;
    border: 2px solid var(--primary-color);
}

b_star {
    display: flex;
    align-items: center;
}

.star-ratings-fill {
    color: var(--primary-color);
}

.startxt {
    margin-left: 20px;
    color: #000;
}/* 커스텀 스타일 추가 */
.about-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 16px;
}
.about-tab-btn {
    padding: 12px 32px;
    border: none;
    background: #f5f5f5;
    color: #222;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.about-tab-btn.active {
    background: #fd8f9f;
    color: #fff;
}
.about-tab-content {
    display: none;
    animation: fadeIn 0.5s;
}
.about-tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}
/* 서비스 카드 세련화 */
.about-feature-wrapper {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 32px 24px 24px 24px;
    margin-bottom: 32px;
    transition: box-shadow 0.2s;
    min-height: 260px;
    position: relative;
}
.about-feature-wrapper:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.about-feature-icon {
    font-size: 2.5rem;
    color: #fd8f9f;
    margin-bottom: 18px;
    display: inline-block;
}
.about-feature-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}
.about-feature-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}
@media (max-width: 767px) {
    .about-tabs { flex-direction: column; gap: 8px;}
    .about-feature-wrapper { padding: 20px 12px;}
}
.privacy-section {
    background-color: #fff;
    padding: 60px 0;
    color: #ddd;
}
.login-required::after {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #fd8f9f;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: bold;
}

/* 모바일 장치용 스타일 */
@media (max-width: 767px) {
    .login-required::after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -50px;
        display: inline-block;
        font-size: 9px;
        padding: 1px 4px;
        background: #fd8f9f;
        border-radius: 4px;
        white-space: nowrap;
    }

/* Register Section Styles */
    .step-container {
        max-width: 600px;
        margin: 50px auto;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
        padding: 30px;
    }
    .step-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #333;
        text-align: center;
        margin-bottom: 20px;
    }
    .form-group{
        margin-bottom: 30px;
    }
    .form-group label {
        font-weight: 600;
        color: #444;
    }
    .form-control {
        border-radius: 8px;
        border: 1px solid #ddd;
        padding: 10px;
        font-size: 1rem;
        color: #333;
    }
    .btn-primary {
        background: #fd8f9f;
        border: none;
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        cursor: pointer;
        width: 100%;
        transition: background 0.3s, transform 0.2s;
    }
    .btn-primary:hover {
        background: #e07c8a;
        transform: scale(1.02);
    }
    .btn-secondary {
        background: #ddd;
        border: none;
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 1rem;
        font-weight: 700;
        color: #333;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }
    .btn-secondary:hover {
        background: #bbb;
        transform: scale(1.02);
    }
    .step-buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }
    .form-check-label {
        font-size: 0.95rem;
        color: #444;
    }
    textarea {
        resize: none;
        color: #333;
    }
}
.header__hamburger {
    display: none;
}

/* 반응형 푸터 */
@media (max-width: 991px) {
    .footer-widgets-wrapper .row > div {
        margin-bottom: 30px;
    }
    .header__hamburger {
        display: block;
    }
    .mean__menu-wrapper {
        display: none;
    }
    #mobile-login-buttons {
        display: flex !important; /* 모바일에서만 노출 */
    }
}

/* FAQ Section Styles */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    margin-top: 40px;
}
.faq-tab-btn {
    background: #fff;
    color: #222;
    border: none;
    border-radius: 30px;
    padding: 12px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    outline: none;
}
.faq-tab-btn.active {
    background: #fd8f9f;
    color: #fff;
}
.faq-tab-content {
    display: none;
    animation: fadeIn 0.5s;
}
.faq-tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

/* FAQ 항목 스타일 */
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fd8f9f;
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
}
.faq-question:after {
    content: '+';
    font-size: 1.4rem;
    color: #fd8f9f;
    transition: transform 0.3s;
    font-weight: bold;
}
.faq-question.active:after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #fff9f9;
}
.faq-answer.active {
    max-height: 500px;
    padding: 20px;
}
.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 공지 사항 스타일 */
.notice-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.notice-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.notice-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}
.notice-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}
.notice-content {
    color: #666;
    line-height: 1.6;
}

/* Steps Section Styles */
    .steps-section {
        position: relative;
        overflow: hidden;
    }
    
    .section-subtitle {
        display: inline-block;
        color: #d4af37;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }
    
    .section-heading {
        font-size: 36px;
        font-weight: 700;
        color: #2a2a2a;
        margin-bottom: 15px;
    }
    
    .section-description {
        color: #666;
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .step-card {
        position: relative;
        background: #fff;
        padding: 40px 30px;
        border-radius: 10px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .step-number-container {
        position: relative;
        width: 60px;
        height: 60px;
        margin: 0 auto 25px;
    }
    
    .step-number {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(135deg, #d4af37 0%, #f9d423 100%);
        border-radius: 50%;
        z-index: 1;
    }
    
    .step-number::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(249, 212, 35, 0.3) 100%);
        border-radius: 50%;
        z-index: -1;
    }
    
    .step-icon {
        font-size: 40px;
        color: #d4af37;
        margin-bottom: 20px;
    }
    
    .step-title {
        font-size: 22px;
        font-weight: 600;
        color: #2a2a2a;
        margin-bottom: 15px;
    }
    
    .step-description {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .step-line {
        position: absolute;
        top: 30px;
        right: -60px;
        width: 60px;
        height: 2px;
        background: #d4af37;
        opacity: 0.3;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .step-line {
            display: none;
        }
        
        .step-card {
            padding: 30px 20px;
        }
    }
    
    @media (max-width: 768px) {
        .section-heading {
            font-size: 28px;
        }
        
        .section-description {
            font-size: 16px;
        }
        
        .step-icon {
            font-size: 32px;
        }
        
        .step-title {
            font-size: 20px;
        }
        
        .step-description {
            font-size: 14px;
        }
    }

    .cta-section {
        padding: 100px 0;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .cta-content p {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 30px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    
    .cta-btn {
        display: inline-block;
        padding: 15px 35px;
        background: linear-gradient(135deg, #d4af37 0%, #f9d423 100%);
        color: #000;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    
    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        color: #000;
    }
    
    .cta-btn i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .cta-btn:hover i {
        transform: translateX(5px);
    }
    
    /* Security Section Styles */
    .security-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .security-card {
        background: #fff;
        border-radius: 10px;
        padding: 30px;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-start;
    }
    
    .security-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .security-icon {
        font-size: 24px;
        color: #d4af37;
        background: rgba(212, 175, 55, 0.1);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    .security-content h3 {
        font-size: 20px;
        font-weight: 600;
    }

/* Service Section Styles */
    .service-tabs {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 36px;
        margin-top: 40px;
    }
    .service-tab-btn {
        background: #fff;
        color: #222;
        border: none;
        border-radius: 30px;
        padding: 12px 36px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        outline: none;
    }
    .service-tab-btn.active {
        background: #fd8f9f;
        color: #fff;
    }
    .service-tab-content {
        display: none;
        animation: fadeIn 0.5s;
    }
    .service-tab-content.active {
        display: block;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(30px);}
        to { opacity: 1; transform: translateY(0);}
    }

    .security-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #2a2a2a;
    }
    
    .security-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 0;
    }
    .product-detail-content{
        color: #222;
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .cta-section {
            padding: 70px 0;
        }
        
        .cta-content h2 {
            font-size: 28px;
        }
        
        .cta-content p {
            font-size: 16px;
        }
        
        .security-section {
            padding: 60px 0;
        }
        
        .security-card {
            padding: 20px;
            flex-direction: column;
        }
        
        .security-icon {
            margin-right: 0;
            margin-bottom: 15px;
        }
    }