/* =========================================
   Wing Banner (Quick Menu) Styles - Premium
   ========================================= */
.wing_banner_wrap {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 9999;
    width: 90px;
    font-family: 'Noto Sans KR', sans-serif;
}

@media (max-width: 1680px) {
    .wing_banner_wrap {
        right: 15px;
    }
}

/* Main Container */
.wing_banner {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    overflow: hidden;
    border-radius: 4px;
}

/* Buttons - Clean Vertical Stack */
.wing_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.wing_btn:last-of-type {
    border-bottom: 1px solid #eee;
}

.wing_btn .txt {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.5px;
    margin-top: 5px;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

/* Icons for buttons */
.wing_btn::before {
    font-family: xeicon;
    /* Removed quotes to match min.css definition */
    font-size: 24px;
    color: #888;
    margin-bottom: 2px;
    transition: all 0.3s;
    z-index: 2;
}

/* Icons Mapping (Updated for XEIcon v1.0.4 compatibility) */
.wing_btn.consult::before {
    content: '\e673';
}

/* xi-pen */
.wing_btn.visit::before {
    content: '\e7a9';
}

/* xi-calendar */
.wing_btn.catalog::before {
    content: '\e70f';
}

/* xi-book */

/* Hover Effects - Fill with Premium Color */
.wing_btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    /* Dark Premium */
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.wing_btn:hover::after {
    opacity: 1;
}

.wing_btn:hover .txt {
    color: #fff;
}

.wing_btn:hover::before {
    color: #cba062;
    /* Gold Accent */
    transform: translateY(-3px);
}

/* SNS Icons Area */
.wing_sns {
    padding: 15px 0;
    background: #fcfcfc;
    border-bottom: 1px solid #eee;
}

.wing_sns a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin: 5px auto;
    border-radius: 50%;
    color: #bbb;
    font-size: 18px;
    transition: all 0.3s;
    background: #fff;
    border: 1px solid #eee;
}

.wing_sns a:hover {
    border-color: transparent;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.wing_sns a.blog:hover {
    background: #03C75A;
}

.wing_sns a.youtube:hover {
    background: #FF0000;
}

.wing_sns a.kakao:hover {
    background: #FEE500;
    color: #3C1E1E;
}


/* Info Area */
.wing_info {
    padding: 20px 0;
    background: #fff;
}

.wing_info .label {
    color: #999;
    letter-spacing: 1px;
    font-size: 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.wing_info .tel {
    font-family: 'Noto Serif KR', serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.wing_info .time {
    font-size: 11px;
    color: #777;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
}

/* Top Button */
.wing_top_btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background: #333;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.wing_top_btn:hover {
    background: #cba062;
    /* Gold Hover */
}


/* Mobile Hidden */
@media (max-width: 1024px) {
    .wing_banner_wrap {
        display: none !important;
    }
}