.page-main {
    background: #fff;
    color: #6c6c6c;
    font-size: 14px;
    line-height: 1.6;
}

.page-main #wrap {
    overflow: hidden;
    width: 100%;
    background: #fff;
}

.page-main .container,
.page-main .warps {
    width: min(100% - 40px, 1440px);
    max-width: 1440px;
    margin: 0 auto;
}

.page-main body {
    letter-spacing: -0.01em;
}

.page-main a {
    color: #6c6c6c;
}

.page-main a:hover {
    color: #2a7cc8;
}

.page-main #header {
    position: sticky;
    top: 0;
    z-index: 40;
    height: auto;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(31, 54, 89, 0.08);
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.page-main .main-header-inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 40px;
    min-height: 96px;
    max-width: 1440px;
}

.page-main .logo {
    min-width: 0;
}

.page-main .logo h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1;
}

.page-main .logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-deep);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.page-main .logo img {
    display: block;
    width: 115px;
    max-width: 115px;
    height: auto;
}

.page-main .navbar {
    display: block;
    min-width: 0;
}

.page-main .nav-list {
    display: grid;
    grid-template-columns: repeat(var(--menu-count, 6), minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-main .nav-item {
    position: relative;
    min-width: 0;
    padding-left: 0;
    text-align: center;
}

.page-main .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 96px;
    padding: 0 10px;
    border-radius: 0;
    color: var(--navy-deep);
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.page-main .nav-item.is-active .nav-link,
.page-main .nav-link:hover {
    background: rgba(31, 54, 89, 0.06);
    color: var(--navy-deep);
}

.page-main .header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

.page-main .header-social {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.page-main .header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(31, 54, 89, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy-deep);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.page-main .header-social a:hover {
    transform: translateY(-1px);
    background: var(--navy-deep);
    color: #fff;
}

.page-main .header-social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.page-main .nav-toggle {
    display: none;
}

.page-main #mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    width: 100%;
    padding: 0;
    border-top: 1px solid rgba(31, 54, 89, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(23, 41, 68, 0.12);
    opacity: 1;
    visibility: visible;
    transition: none;
}

.page-main #mega-menu-container.is-open,
.page-main #mega-menu-container.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.page-main .mega-menu-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
    width: min(100% - 40px, 1440px);
    max-width: 1440px;
    margin: 0 auto;
}

.page-main .mega-menu-spacer {
    display: block;
}

.page-main .mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(var(--menu-count, 6), minmax(0, 1fr));
    gap: 0;
    width: 100%;
    max-width: var(--nav-width, 964px);
    margin: 0;
    padding: 12px 0 24px;
}

.page-main .mega-menu-column {
    min-width: 0;
    padding: 12px 14px 0;
    border-left: 0;
    transition: background-color 0.3s ease;
}

.page-main .mega-menu-column+.mega-menu-column {
    border-left: 1px solid rgba(31, 54, 89, 0.08);
}

.page-main .mega-menu-column.active,
.page-main .mega-menu-column[data-menu].is-active {
    background-color: transparent;
    border-radius: 0;
}

.page-main .mega-menu-title {
    display: block;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.page-main .mega-menu-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 14px;
    list-style: none;
    text-align: center;
}

.page-main .mega-menu-list li {
    margin-bottom: 0;
}

.page-main .mega-menu-list a {
    display: block;
    padding: 2px 0;
    color: inherit;
    word-break: keep-all;
}

.page-main .mega-menu-list a:hover {
    color: var(--navy);
}

.page-main #contents {
    margin-top: 0;
}

.main-hero-slider {
    display: block;
    width: 100vw;
    max-width: none;
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.main-hero-slider .content {
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0;
}

.bxslider2 {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bxslider2>li {
    overflow: hidden;
    min-height: 0;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

.bxslider2>li>a {
    display: block;
    min-height: 0;
}

.bxslider2 img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
}

.bx-wrapper {
    position: relative;
    max-width: 100% !important;
    margin: 0 auto 60px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.main-hero-slider .bx-wrapper {
    margin-bottom: 0;
}

.bx-wrapper .bx-viewport {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 30px;
    left: -25%;
    width: 100%;
}

.bx-wrapper .bx-pager {
    text-align: center;
    color: #666;
    font: bold 0.85em Arial, sans-serif;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 5px;
    background: #4f3d39;
    text-indent: -9999px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #e20000;
}

.section {
    display: inline-block;
    width: 1440px;
    max-width: 100%;
    margin: 56px auto 0;
}

.section.main-hero-slider {
    display: block;
    width: 100vw;
    max-width: none;
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.main-hero-slider .bx-wrapper,
.main-hero-slider .bx-wrapper .bx-viewport {
    width: 100vw !important;
    max-width: 100vw !important;
}

.main-hero-slider .bxslider2,
.main-hero-slider .bxslider2>li,
.main-hero-slider .bxslider2>li>a,
.main-hero-slider .bxslider2 img {
    width: 100vw !important;
    max-width: none !important;
}

@media (min-width: 1441px) {
    .section.main-hero-slider {
        transform: translateX(calc((1440px - 100vw) / 2));
    }
}

.section .title {
    margin-top: 20px;
    margin-bottom: 0;
}

.section .title img {
    display: block;
}

.main-package-title,
.main-event-title {
    display: flex;
    align-items: flex-end;
    gap: 22px;
    min-height: 52px;
    padding: 30px 0;
    box-sizing: border-box;
    color: #1d1d1d;
}

.main-package-title h2,
.main-event-title h2 {
    margin: 0;
    color: #111;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.main-package-title p,
.main-event-title p {
    margin: 0 0 3px;
    color: #8a8a8a;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.main-package-title p span {
    display: inline-block;
    margin-right: 8px;
    color: #8f8f8f;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.main-event-title h2 span {
    font-size: 0.8em;
    letter-spacing: -0.04em;
}

.section .content {
    width: 100%;
    max-width: 1440px;
    margin: 0px auto 0;
    padding: 0px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.bxslider_pack {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
}

.bxslider_pack>div {
    flex: 0 0 calc((100% - 30px) / 4);
    width: calc((100% - 30px) / 4);
    min-width: 0;
}

.bxslider_pack img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.mid_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.mid_item {
    width: calc(33.333% - 14px);
    margin-bottom: 20px;
    box-sizing: border-box;
}

.mid_item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.recent_box {
    float: left;
    width: 48%;
    min-height: 195px;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.recent_box_t {
    margin-top: 50px;
    margin-bottom: 30px;
}

.recent_box:nth-of-type(2n-1) {
    margin-right: 20px;
}

.recent_box:nth-of-type(2n) {
    float: right;
}

.recent_box .titles {
    margin-bottom: 16px;
}

.recent_box .titles img {
    display: block;
}

.recent_box .titles .home-faq-title {
    display: inline-block;
    color: #1d1d1d;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.recent_box dl {
    clear: both;
    display: block;
    width: 100%;
    min-height: 28px;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 15px;
    line-height: 1.55;
}

.recent_box dd.data {
    float: left;
    width: calc(100% - 92px);
    margin: 4px 0;
    padding-left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.recent_box dd.data.home-faq-question {
    width: 100%;
}

.recent_box dd.day {
    float: right;
    width: 86px;
    margin: 4px 0;
    color: #6c6c6c;
    text-align: right;
}

.sh_latest_post,
.sh_latest_post li,
.sh_latest_post .double {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sh_latest_post li.double {
    min-height: 120px;
    padding-top: 20px;
}

.sh_latest_post li .content {
    position: relative;
    box-sizing: border-box;
    height: 180px;
    margin: 0;
    overflow: hidden;
}

.sh_latest_post .content div {
    float: none;
}

.sh_latest_post .content div.content_img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sh_latest_post .content div.content_img .login_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 62px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.sh_latest_post .content img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
}

.sh_latest_post .content div.content_con {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    box-sizing: border-box;
    width: 100%;
    margin-left: 0;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.9);
}

.sh_latest_post dl {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}

.sh_latest_post .content div.content_con>dl {
    margin-top: 22px !important;
}

.sh_latest_post .content div.content_con dd.s_t {
    color: #666;
    font-size: 14px;
}

.sh_latest_post .content div.content_con dd.t {
    color: #000;
    font-size: 22px;
    font-weight: 600;
}

.sh_latest_post .content div.content_con dd.c {
    margin-top: 15px;
    color: #333;
    font-family: dotum, sans-serif;
    font-size: 12px;
}

.sh_latest_post .bx-default-pager {
    display: none;
}

.radius_box {
    overflow: hidden;
    height: 400px;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 28px;
    background: #333;
    box-shadow: none;
}

.radius_box .content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 100%;
    margin-top: 0;
    padding: 0;
    box-sizing: border-box;
}

.map {
    float: none;
    width: 68%;
    height: 400px;
    padding: 0;
    box-sizing: border-box;
}

.map #map {
    height: 400px !important;
    overflow: hidden;
    border-radius: 0;
}

.time_info_v2 {
    display: flex;
    flex-direction: column;
    width: 32%;
    height: 100%;
    padding: 28px 26px;
    box-sizing: border-box;
    background: #333;
    color: #fff;
}

.ti-header {
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

.ti-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: rgba(79, 195, 247, 0.16);
    color: #4fc3f7;
}

.ti-header h2 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.ti-header-sub {
    margin: 6px 0 0;
    color: #d8d8d8;
    font-size: 12px;
}

.ti-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    flex: 1;
}

.ti-schedule {
    display: grid;
    gap: 7px;
}

.ti-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 28px;
    color: #f7f7f7;
    font-size: 14px;
}

.ti-day {
    flex: 0 0 88px;
    font-weight: 700;
}

.ti-day i {
    margin-right: 6px;
    color: #4fc3f7;
    font-size: 7px;
    vertical-align: middle;
}

.ti-hours {
    flex: 1;
    color: #fff;
    font-weight: 600;
}

.ti-closed .ti-day i {
    color: #ef5350;
}

.ti-night .ti-day i {
    color: #ab47bc;
}

.ti-badge-closed,
.ti-badge-night {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.ti-badge-closed {
    background: rgba(239, 83, 80, 0.18);
    color: #ff8a80;
}

.ti-badge-night {
    background: rgba(171, 71, 188, 0.22);
    color: #f3b6ff;
}

.ti-side {
    display: grid;
    gap: 12px;
}

.ti-notices {
    display: grid;
    gap: 6px;
}

.ti-notice-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
    font-size: 12px;
}

.ti-notice-item i {
    width: 16px;
    color: #4fc3f7;
    text-align: center;
}

.ti-phone-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    color: #333 !important;
}

.ti-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0056b3;
    color: #fff;
}

.ti-phone-text {
    display: grid;
    gap: 1px;
}

.ti-phone-label {
    color: #777;
    font-size: 12px;
}

.ti-phone-number {
    color: #111;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.clear {
    clear: both;
}

.page-main #footer {
    clear: both;
    width: 100%;
    margin-top: 50px;
    border-top: 1px solid #e1e1e1;
    background: #fff;
    color: #6c6c6c;
}

.page-main #footer .footer_menu {
    display: block;
    padding: 15px 0;
    border-bottom: 0;
}

.page-main #footer .footmenu {
    float: left;
    display: block;
}

.page-main #footer .footmenu li {
    float: left;
    margin-top: 10px;
    margin-right: 20px;
}

.page-main #footer .fsns {
    float: right;
    display: flex;
    gap: 0;
}

.page-main #footer .fsns a {
    display: inline-block;
    margin-left: 6px;
}

.page-main #footer .fsns img {
    display: block;
    width: 34px;
    height: 34px;
}

.page-main .b_all_area {
    width: 100%;
    overflow: hidden;
    border-bottom: 0;
    background: #6e6565;
}

.page-main .b_all_menu {
    display: flex;
    gap: 28px;
    padding: 20px 0;
}

.page-main .b_all_menu ul {
    display: block;
    flex: 1 1 0;
    margin: 0;
    padding: 0;
    color: #fff;
    list-style: none;
}

.page-main .b_all_menu .titl {
    margin-bottom: 30px;
    color: #fff;
    font-size: 14px;
}

.page-main .b_all_menu .titl a,
.page-main .b_all_menu .bcont a {
    color: #fff;
}

.page-main .b_all_menu .bcont {
    margin-bottom: 10px;
    color: #fff;
    font-size: 12px;
}

.page-main #footer .footer_area {
    height: 130px;
    background: #595252;
}

.page-main #footer .footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 0;
}

.page-main #footer .cp_wraps {
    display: block;
    padding: 0;
    color: #fff;
}

.page-main #footer .copyright {
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    color: #fff;
}

.page-main #footer .copyright li {
    float: left;
    margin-right: 20px;
}

.page-main #footer .tel {
    float: right;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.page-main #footer .footlogo img {
    display: block;
    max-width: 120px;
}

.page-main #floatMenu {
    display: none;
}

.page-main .float-menu {
    position: fixed;
    top: 50%;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-50%);
}

.page-main .float-menu-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    color: #333;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.page-main .float-menu-item:hover,
.page-main .float-menu-item.hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-main .float-menu-item i {
    position: relative;
    z-index: 2;
    margin-bottom: 5px;
    color: #0056b3;
    font-size: 22px;
}

.page-main .float-menu-item span {
    position: relative;
    z-index: 2;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
}

.page-main .float-menu-item.kakao {
    background: #fee500;
}

.page-main .float-menu-item.kakao i {
    color: #3c1e1e;
}

.page-main .float-menu-item.qna {
    background: #0056b3;
}

.page-main .float-menu-item.qna i,
.page-main .float-menu-item.qna span,
.page-main .float-menu-item.review i,
.page-main .float-menu-item.review span,
.page-main .float-menu-item.blog i,
.page-main .float-menu-item.blog span,
.page-main .float-menu-item.insta i,
.page-main .float-menu-item.insta span {
    color: #fff;
}

.page-main .float-menu-item.review {
    background: #ff6b6b;
}

.page-main .float-menu-item.blog {
    background: #2db400;
}

.page-main .float-menu-item.insta {
    background: linear-gradient(135deg, #515bd4, #8134af, #dd2a7b, #feda77, #f58529);
}

@media (max-width: 900px) {
    .recent_box,
    .recent_box:nth-of-type(2n) {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 28px;
    }

    .radius_box {
        height: auto;
    }

    .radius_box .content {
        display: block;
    }

    .map,
    .time_info_v2 {
        width: 100%;
    }

    .page-main .b_all_menu {
        flex-wrap: wrap;
    }

    .page-main .b_all_menu ul {
        flex-basis: calc(50% - 14px);
    }
}

@media (max-width: 820px) {
    .page-main .main-header-inner {
        display: flex;
        gap: 24px;
        min-height: 74px;
    }

    .page-main .navbar {
        display: none;
    }

    .page-main .header-actions {
        margin-left: auto;
        gap: 10px;
    }

    .page-main .nav-toggle {
        display: block;
    }

    .page-main .mega-menu-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-main .mega-menu-spacer {
        display: none;
    }

    .page-main #header.is-mobile-open .navbar {
        display: block;
        position: absolute;
        top: calc(100% + 12px);
        right: 20px;
        left: 20px;
        padding: 18px;
        border-radius: 24px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .page-main #header.is-mobile-open .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 640px) {

    .page-main .container,
    .page-main .warps {
        width: 100%;
        max-width: 100%;
    }

    .page-main #header .container {
        width: min(100% - 24px, var(--wrap));
        max-width: var(--wrap);
    }

    .page-main .header-social a {
        width: 36px;
        height: 36px;
    }

    .page-main .header-social img {
        width: 20px;
        height: 20px;
    }

    .mid_wrap {
        display: block;
    }

    .mid_item {
        width: 100%;
    }

    .bxslider_pack>div,
    .bxslider_pack img {
        width: 100%;
    }

    .main-package-title,
    .main-event-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .main-package-title h2,
    .main-event-title h2 {
        font-size: 26px;
    }

    .main-package-title p,
    .main-event-title p {
        font-size: 13px;
    }

    .ti-body {
        display: block;
    }

    .ti-side {
        margin-top: 16px;
    }

    .ti-phone-number {
        font-size: 19px;
    }

    .page-main .b_all_menu {
        display: block;
    }

    .page-main #footer .footmenu,
    .page-main #footer .fsns,
    .page-main #footer .copyright,
    .page-main #footer .tel {
        float: none;
    }

    .page-main #footer .fsns {
        margin-top: 16px;
    }

    .page-main #footer .footer_area {
        height: auto;
    }

    .page-main #footer .footer-bottom {
        display: block;
    }

    .page-main #footer .footlogo {
        margin-top: 18px;
    }

    .page-main .float-menu {
        right: 10px;
        gap: 8px;
    }

    .page-main .float-menu-item {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .page-main .main-header-inner {
        gap: 12px;
    }

    .page-main .logo a {
        gap: 8px;
        font-size: 20px;
    }

    .page-main .header-actions,
    .page-main .header-social {
        gap: 6px;
    }

    .page-main .header-social a {
        width: 34px;
        min-width: 34px;
        height: 34px;
        min-height: 34px;
    }

    .page-main .nav-toggle {
        width: 36px;
        height: 36px;
    }
}
