@font-face {
    font-family: 'CustomFont';
    src: url('/assets/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    unicode-range: U+0020-007E;
}

@font-face {
    font-family: 'CustomFont';
    src: url('/assets/fonts/PretendardVariable.woff2') format('woff2');
    unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F;
}


* {
    word-break: keep-all;
}

html,
body {
    max-width: 100%;
}

body {
    margin: 0 auto;
    font-family: "CustomFont", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;

}

td {
    color:var(--bs-gray-600)
}
#wrap {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    height: 100vh;
}

.body {
    font-size: .875rem;
}

.caption {
    font-size: 13px;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2
}

.flex-3 {
    flex: 3
}

.flex-4 {
    flex: 4
}

.flex-5 {
    flex: 5
}

.h-center {
    height: calc(100vh - 61px);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.thumbnail-small {
    width: 48px;
    height: 48px;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: .5rem;
}

/*Font*/

.text-orange {
    color: var(--bs-orange)
}


.text-gray-500 {
    color: var(--bs-gray-500)
}

.text-gray-600 {
    color: var(--bs-gray-600)
}

.text-gray-700 {
    color: var(--bs-gray-700)
}

/*Splash*/

#splash {
    background-color: var(--bs-primary);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#splash .title {
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

#splash .title img {
    max-width: 60%;
}

#splash .bottom {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

#splash .bottom img {
    max-width: 40%;

}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fade-out {
    animation: fadeOut 1s ease-out forwards;
}

/*Header*/

header i {
    font-size: 1.5rem;
}

#main-header {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    max-width: 500px;
    height: 70px;
    width: 100%;
    z-index: 800;
    background: white;
    transition: transform 0.5s ease;
}

#main-header.hide {
    transform: translate(-50%, -100%);
}

#main-header.fixed {
    position: fixed;
}

/* 페이지 맨 위일 때 상대 위치로 처리 */
body.at-top #main-header.fixed {
    position: relative;
  }
  

#header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#header-top .logo {
    font-size: 2rem;
    font-weight: 700;
    padding-left: 20px;
}

#header-top .logo img {
    height: 20px;
}

#header-top .shop-menu {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

#header-top .shop-menu a {
    padding: 1rem;
}


#sticky-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, 68px);
    /* 초기 위치: 아래 */
    width: 100%;
    max-width: 500px;
    background: #fff;
    z-index: 999;
    transition: transform 0.3s ease;
}

#sticky-nav.scrolled {
    transform: translate(-50%, 0);
    /* 위로 슬라이드 */
}



#main-nav .swiper-slide {
    width: auto !important;
}

#main-nav .nav-link {
    padding: 8px 16px;
    color: var(--bs-gray-500);
    white-space: nowrap;
    font-size: 1rem;
    border: none;
}

#main-nav .nav-link.active {
    color: var(--bs-gray-900);
    font-weight: bold;
    border-bottom: 2px solid var(--bs-gray-900);
}


#main-category {
    padding: 1rem 0;
}

#main-category .swiper-slide {
    width: auto !important;
}


#page-header {
    position: sticky;
    top: 0;
    right: 0;
    max-width: 500px;
    width: 100%;
    z-index: 1000;
    background: white;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

#page-header.fixed {
    position: fixed;
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* 살짝 그림자 효과 */
}

#page-header.hide {
    transform: translateY(-100%);
    opacity: 0;
    box-shadow: none;
}


#page-top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
}

#page-top .btn-back {
    position: absolute;
    left: 0;
}


#page-cta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px;
}

#page-cta-top .btn-back {
    position: relative;
}

#page-cta-top .right button {
    padding: .5rem .45rem
}

#offcanvasRight .offcanvas-body {
    position: relative;
    padding: 0 1.25rem;
    justify-content: space-between;
}


#offcanvasRight .offcanvas-header {
    position: relative;
    padding: 0 0 0 1.25rem;
    justify-content: space-between;
}

#offcanvasRight .offcanvas-header button {
    font-size: 1.5rem;
}


#nav-right .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

#nav-right .menu-item {
    padding: 1.25rem 0;
    font-weight: bold;
    cursor: pointer;
    
}
 
#nav-right .menu-item a p {
    font-size: 1.125rem;
}

#nav-right .menu-item .image {
   margin-bottom: .5rem;
}


#nav-right .menu-item .image img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    border-radius: 2.5rem;
}

#nav-right .menu-title i {
    font-weight: 400;
    font-size: 1.5rem;
}

#nav-right .menu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 서브메뉴 초기 상태 */
#nav-right .submenu {
    list-style: none;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    overflow: hidden;
    transition:
        max-height 0.6s ease-out,
        opacity 0.4s ease-out,
        transform 0.6s ease-out;
    will-change: transform, opacity;
    display: flex;
    gap: .5rem;
    flex-direction: column;
}

/* 펼쳐졌을 때 */
#nav-right .menu-item.open .submenu {
    max-height: 500px;
    /* 충분한 예상 높이 */
    opacity: 1;
    transform: translateY(16px);
}

#nav-right .submenu li {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#nav-right .menu-item.open .submenu li:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

#nav-right .menu-item.open .submenu li:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

#nav-right .menu-item.open .submenu li:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

#nav-right .submenu li a {
    padding: .5rem 0;
    display: block;
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--bs-gray-700);
}

/* 필요한 경우 추가 항목도 계속해서 nth-child(...) 적용 */


/* 아이콘 회전 */
#nav-right .toggle-icon {
    transition: transform 0.3s ease;
}

#nav-right .menu-item.open .toggle-icon {
    transform: rotate(180deg);
}





/*Footer*/

footer {
    position: relative;
    padding: 1.25rem 1.25rem 5rem 1.25rem;
    background: var(--bs-dark);
    display: block;
    z-index: 1;
}

.footer-container {
    color: var(--bs-gray-600);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 1rem
}

.footer-links li a {
    color: var(--bs-gray-400);
    font-size: .875rem;
    font-weight: 500;
    padding: .5rem 0;
    display: block;
}

.footer-info {
    padding-bottom: 1rem;
}

.footer-info .line::after {
    content: '│';
    display: inline;
    color: var(--bs-gray-600);
    font-size: 12px;
    padding: 0 .25rem;
}

.copyright {
    font-size: 12px;
}

/* 하단 내비게이션 */
#bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: 100%;
    background: #fff;
    transition: transform 0.5s ease;
    z-index: 800;
}


/* 숨김 클래스 */
#bottom-nav.hide {
    transform: translateX(-50%) translateY(100%);
}

#bottom-nav ul {
    display: flex;
    align-items: center;
}

#bottom-nav ul li {
    flex: 1;
}

#bottom-nav ul li a {
    display: flex;
    gap: .5rem;
    justify-content: center;
    font-size: 12px;
    flex-direction: column;
    align-items: center;
    padding: .5rem 0;
    color: var(--bs-gray-500);
}

#bottom-nav ul li a img {
    width: 1.5rem;
}

#bottom-nav .icon-active {
    display: none;
}

#bottom-nav ul li.active a {
    color: var(--bs-gray-900);
}

#bottom-nav ul li.active .icon-active {
    display: inline;
}

#bottom-nav ul li.active .icon-default {
    display: none;
}

#bottom-nav ul li .icon-default {
    opacity: .2;
}

#back-to-top {
    position: fixed;
    right: 20px;
    bottom: 86px;
    z-index: 9999;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 나타날 때 */
#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#fixed-bottom {
    position: fixed;
    bottom: 0;
    z-index: 9;
    background-color: white;
    width: 100%;
}

#fixed-bottom button {
    border-radius: 0;
}

#fixed-write {
    position: fixed;
    right: 20px;
    bottom: 86px;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    text-align: center;
    cursor: pointer;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: bottom 0.3s ease;
}

#fixed-write button {
    font-size: 1.5rem;
    z-index: 2;
}

.fixed-top-info {
    position: relative;
    background: var(--bs-primary);
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 600;
}

.fab-wrapper {
    z-index: 1055;
}

.fab-btn {
    width: 56px;
    height: 56px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.fab-btn.rotate {
    transform: rotate(45deg);
}

.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    z-index: 1;
    min-width: 12rem;
    background: white;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.fab-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fab-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    /* 오버레이 아래 */
}

#fabIcon {
    display: inline-block;
    transition: transform 0.3s ease;
}

#fabIcon.rotate {
    transform: rotate(45deg);
}


/*Main*/

#hero-card {
    width: 100%;
}

.hotel-card {
    width: 22vw !important;
    flex-shrink: 0;
    background: white;
    border-radius: .5rem;
    overflow: hidden;
    border: 1px solid var(--bs-gray-200);
}

.hotel-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    /* 💡 고정된 비율 유지 */
    object-fit: cover;
}

.hotel-info {
    padding: 1rem;
}

.hotel-name-ko {
    font-size: 1rem;
    font-weight: bold;
}

.hotel-name-en {
    font-size: 0.9rem;
    color: var(--bs-gray-700)
}

.hotel-desc {
    font-size: 0.8rem;
    color: var(--bs-primary)
}


#world-category {
    padding: 0 1.5rem;
}

#world-category ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: center;
    text-align: center;
    row-gap: 1.5rem;
}

#world-category ul li a {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-weight: 600;
    color: var(--bs-gray-700);
    justify-content: flex-start;
    align-items: center;
}

#world-category ul li .image {
    max-width: 4rem;
}

#world-category ul li img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

#world-category ul li p {
    font-size: 1rem;
    text-align: left;
}


.fixed-contact {
    position: fixed;
    bottom: 80px;
    z-index: 3;
    width: 100%;
    padding: 0 1.5rem;
    transition: width 0.3s ease, bottom 0.3s ease;

}

.fixed-contact.stick-bottom {
    bottom: 1.5rem;
}

.fixed-contact.shrink-width {
    width: 84%;
}



.promo-section {
    padding: 0 1.5rem;
}

.promo-swiper .swiper-pagination {
    position: relative;
    margin-top: 1rem;
}

.promo-swiper .swiper-pagination .swiper-pagination-bullet {
    width: .5rem;
    height: .5rem;
    display: inline-block;
    background: var(--bs-gray-200);
    opacity: 1;
    border: 1px solid #ffffff70;
    border-radius: 50%;
}

.promo-swiper .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--bs-gray-600);
}



.promo-item {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.promo-item .promo-image {
    flex: 1;
    border-radius: .5rem;
}

.promo-item .promo-image img {
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.promo-item .promo-info {
    flex: 2;
}

.promo-item .promo-info .benefit {
    font-size: .875rem;
    color: var(--bs-orange);
    font-weight: 500;
    display: flex;
    gap: .5rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: .5rem;
}

.promo-item .promo-info .benefit .badge {
    font-size: .875rem;
    color: var(--bs-orange);
    font-weight: 500;
    background: #fd7e1424;
}


.section-banner a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    margin: 1.5rem 0;
    gap: .5rem;
}

.section-banner a .image {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}


.section-banner a .image img {
    width: 100%;
}

.section-banner a .title {
    flex: 3;
    font-size: 1rem;
}

.pick-card {
    border: 1rem;
    background: var(--bs-gray-100);
    border-radius: 1rem;
}

.pick-card .image {
    width: 100%;
    border-radius: 1rem 1rem 0 0;
}

.pick-card .image img {
    width: 100%;
    border-radius: 1rem 1rem 0 0;
}

.pick-card .content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.pick-card .content .title h4 {
    margin-bottom: .25rem;
}

.pick-card .content .detail {
    color: var(--bs-gray-600);
    font-size: .875rem;
}


.logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 120px;
    background-color: #fff;
    margin: 1.5rem 0;
}

.logo-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollLeft 34s linear infinite;
}

.logo-track img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title a {
    font-size: .875rem;
    font-weight: 500;
}


#main-recruit {
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#main-recruit .recruit-card {


    border-radius: .5rem;
    border: 1px solid var(--bs-gray-100);
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

#main-recruit .recruit-card a {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

#main-recruit .recruit-info {
    flex: 1;
    margin-right: 1rem;
}

#main-recruit .recruit-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: .5rem;
}

#main-recruit .recruit-meta {
    font-size: 12px;
    color: var(--bs-gray-700);
    margin-bottom: 6px;
}

#main-recruit .recruit-price {
    font-size: .875rem;
    margin-bottom: .5rem;
}

#main-recruit .recruit-date {
    font-size: 13px;
    color: var(--bs-gray-600);
    line-height: 1.4;
    margin-bottom: .5rem;
}

.recruit-tags .tag {
    display: inline-block;
    font-size: 12px;
    padding: .5rem;
    border-radius: .5rem;
    margin-right: .25rem;
}


#main-recruit .recruit-image img {
    width: 64px;
    height: 64px;
    border-radius: .5rem;
    object-fit: cover;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 72px;
}

.category-card a img {
    width: 64px;
    height: 64px;
    border-radius: .5rem;
    background-color: var(--bs-gray-100);
    object-fit: cover;
    margin-bottom: .5rem;
    padding: .5rem;
}

.category-card a {
    font-size: .875rem;
    color: var(--bs-gray-900);
    text-align: center;
}
 

.main-sale {
    background: var(--bs-gray-900);
    color: var(--bs-white);
    padding: 2rem 1.25rem;
}

.sale-sub {
    color: var(--bs-primary);
    background-color: var(--bs-primary-light);
    margin-top: 8px;
    border-radius: .5rem;
    display: inline;
    padding: .25rem .5rem;
    font-size: .875rem;
}

#product {

}
#product .product-wrap {
    display: flex;
    flex-direction: column;
    gap:1.5rem
}


.event-card {
    position: relative;
}

.event-card .card-body {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.event-card .card-title-small {
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card .date {
    display: flex;
    flex-direction: row;
    gap: .25rem;
    color: var(--bs-gray-500);
    font-size: 12px;
    flex-wrap: wrap;
}

.event-badge {
    position: absolute;
    top: .5rem;
    left: .5rem;
}

.card-title-small {
    font-size: 0.9rem;
    color: var(--bs-gray-900);
}

.card-subtitle {
    font-weight: bold;
}




/*Hero*/

#hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#hero .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero .slide-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--bs-white);
}

#hero .slide-caption h2 {
    padding-bottom: .5rem;
}

#hero .custom-pagination {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 13px;
    color: var(--bs-white);
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: .5rem 1rem;
    border-radius: 3rem;
}

#hero .swiper-button-prev,
#hero .swiper-button-next {
    color: var(--bs-white);
}

#hero .swiper-button-next,
#hero .swiper-button-prev {
    display: none !important;
}

/*Tour*/

#tour-hero {
    position: relative;
}

#tour-hero .item {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    height: 560px;
    /* 카드 높이 원하는 대로 조절 가능 */
}

#tour-hero .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#tour-hero .item .title,
#tour-hero .item .search {
    z-index: 1;
    position: relative;
}

#tour-hero .item .title {
    color: #fff;
    position: relative;
}

#tour-hero .item .title a {
    color: #fff;
    display: block;
    padding: .5rem 1.5rem;
    border: 1px solid #fff;
    width: max-content;
    border-radius: .5rem;
    margin-top: 1rem;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 200px;
    color: white;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    backdrop-filter: brightness(0.9);
}


#tour-category-swiper .swiper-slide {
    width: auto;
}

#tour-category-swiper .btn {
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 14px;
    white-space: nowrap;
}

#tour-category-swiper .btn.active {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}


#tour-list-swiper .swiper-slide img {
    aspect-ratio: 4/3;
    object-fit: cover;
}




#tour-category-swiper2 .swiper-slide {
    width: auto;
}

#tour-category-swiper2 .btn {
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 14px;
    white-space: nowrap;
}

#tour-category-swiper2 .btn.active {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}


#tour-list-swiper2 .swiper-slide img {
    aspect-ratio: 4/3;
    object-fit: cover;
}



/*product slider*/

.product-card {
    border-radius: .5rem;
    padding: 1rem 0;
}

.product-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.product-card .brand {
    font-size: 12px;
    color: var(--bs-gray-400);
    margin-bottom: 4px;
}

.product-card .name {
    font-size: 14px;
    font-weight: bold;
    color: var(--bs-gray-200);
    margin-bottom: 6px;
}

.product-card .price {
    font-size: 14px;
    color: var(--bs-gray-100);
}

.product-card .price .discount {
    color: #ff5252;
    font-weight: bold;
    margin-right: 6px;
}

/* 프로그래스바 페이징 스타일 */
#product-slide .swiper-pagination {
    height: 2px;
    background: var(--bs-gray-800);
    border-radius: 2px;
    bottom: 0 !important;
    top: auto;
}

#product-slide .swiper-pagination-progressbar-fill {
    background: var(--bs-gray-100);
}

/*Login*/

.login-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.25rem;
}

.login-container .logo,
.login-container h2 {
    margin-bottom: 30px;
}


.login-btn {
    background-color: #000;
    color: #fff;
    border: none;
    width: 100%;
    border-radius: .5rem;
    margin-top: 16px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-top: 1rem;
}

.sns-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.sns-icons img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.signup-text {
    margin-top: 32px;
    font-size: 1rem;
}

.signup-text p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.sns-icons ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sns-icons ul li {
    position: relative;
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    font-size: 0;
}

#toggle-password.hidden {
    display: none !important;
}



.sns-icons .kakao {
    background: #fee500 url(/assets/images/icon/ico-kakao.png) 50% 50% no-repeat;
    background-size: 24px;
}

.sns-icons .google {
    background: #f8f9fd url(/assets/images/icon/ico-google.png) 50% 50% no-repeat;
    background-size: 24px;
}

.sns-icons .naver {
    background: #1ec800 url(/assets/images/icon/ico-naver.png) 50% 50% no-repeat;
    background-size: 24px;
}

.sns-icons .apple {
    background: #000 url(/assets/images/icon/ico-apple.png) 50% 50% no-repeat;
    background-size: 16.4px 20px;
}

/*Find*/

.info-circle {
    color: var(--bs-gray-500);
    font-size: 13px;
}

.info-circle ul {
    display: flex;
    gap: .25rem;
    flex-direction: column;
    padding-left: 1rem;
}

.info-circle ul li {
    list-style: disc;
}


.result-card {
    width: 100%;
    text-align: center;
    padding: 0 1.25rem;
}

.result-card img {
    width: 32%;
    margin-bottom: 1.5rem;
}

.result-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.result-card .info-text {
    font-size: 16px;
    color: var(--bs-gray-800);
    margin-bottom: 12px;
}

.result-card .note {
    font-size: 14px;
    color: var(--bs-gray-400);
    margin-bottom: 30px;
}




.slide-in-right {
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}


.bounce-top {
    -webkit-animation: bounce-top 0.9s both;
    animation: bounce-top 0.9s both;
}


@-webkit-keyframes bounce-top {
    0% {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    40% {
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    65% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    82% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    93% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    25%,
    55%,
    75%,
    87% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }
}

@keyframes bounce-top {
    0% {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    40% {
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    65% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    82% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    93% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    25%,
    55%,
    75%,
    87% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }
}




/*Product Main*/

/* 슬라이더 전체 섹션 */
.product-section {
    margin-bottom: 2rem;
    padding: 0 1.25rem;
}


/* 상품 카드 스타일 */
#product-main .swiper-slide.product-card {
    width: auto;
    max-width: 160px;
    font-size: 13px;
}

#product-main .product-card img {
    width: 100%;
    border-radius: .5rem;
    margin-bottom: .5rem;
}

#product-main .product-title {
    color: var(--bs-gray-700);
    font-weight: 500;
}

#product-main .product-discount {
    color: var(--bs-danger);
    font-weight: bold;
}

#product-main .price {
    color: var(--bs-gray-900);
    font-weight: 700;
    font-size: 1rem;
}


#product-main .product-card {
    padding: 0 0 1rem 0;
}


/* Swiper 프로그래스 바 */
#product-main .swiper-pagination {
    height: 2px;
    background: var(--bs-gray-100);
    position: absolute;
    bottom: 0;
    top: auto;
}

#product-main .swiper-pagination-progressbar-fill {
    background: var(--bs-gray-900);
}




/*Product List*/


#search-keyword .swiper-slide {
    width: auto;
    margin-right: 10px;
}

#search-keyword .badge {
    font-size: .875rem;
    padding: .5rem .85rem;
    font-weight: 400;
}

#serch-filter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 1rem;
}

#serch-filter button {
    font-size: .875rem;
    padding: .5rem .85rem;
}

.filter-display ul {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.filter-display ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .25rem;
    background-color: var(--bs-gray-600);
    color: #fff;
    padding: .5rem .85rem;
    border-radius: .5rem;
    font-size: .875rem;
}

#filterOffcanvas.offcanvas-bottom {
    height: 85vh;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}


#regionList,
#extraRegions {
    display: flex;
    flex-direction: column;
    gap: .5rem
}



/*Product Detail*/


#product-detail {
    margin: auto;
    overflow: hidden;
    position: relative;
}

#product-detail .swiper-slide {
    max-height: 500px;

}

#product-detail .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;

}

.detail-image-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 768px;
    margin: 0 auto;
  }
  
  .detail-image.collapsed {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  
  .detail-image.expanded {
    max-height: 9999px;
    transition: max-height 0.5s ease;
  }
  
  .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .detail-image-wrapper.expanded .gradient-overlay {
    opacity: 0;
  }
  
  .more-btn {
    display: block;
    margin: 0 auto;
    z-index: 2;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

  

#product-content,
#product-user {
    padding: 1.25rem
}

#product-content h2 {
    font-weight: 600;
    color: var(--bs-gray-800)
}
  

#product-content .location-info {
    color: var(--bs-gray-500);
    font-size: .875rem;
    padding-bottom: 1rem;
}

#product-content .location-info a {
    text-decoration: underline;
    color: var(--bs-gray-500);
}

#product-content .location {
    font-size: .875rem;
}

#product-content .description {
    background: var(--bs-gray-100);
    padding: 1.25rem;
    border-radius: .5rem;
    margin-top: 1rem;
    color: var(--bs-gray-600);
}

#product-content .description .title {
    font-weight: 700;
    color: var(--bs-gray-900);
    margin-bottom: .5rem;
}
#product-content .description .title i {
    font-weight: 400;
    color: var(--bs-primary);
}

.tag-wrap {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.tag-wrap .tag {
    background-color: var(--bs-primary-light);
    color:var(--bs-primary);
    padding: 2px 8px;
    font-size: .875rem;
    border-radius: .5rem;
}

  
.icon-box {
    padding: 1.5rem 0;
}
.icon-box ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-row-gap: 1rem;
}

.icon-box ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--bs-gray-700);
}

.circle-list {
    margin-bottom: 1.5rem;
}

.circle-list ul { 
    padding-left: 1.25rem;
}

.circle-list ul li {
    list-style: disc;
}

.room-info { 

}

.room-info .desc {
    font-size: .875rem;
    color:var(--bs-gray-600);
}

.room-info img {
    width: 100%;
}

.cancel-info {
    display: flex;
    gap: 1rem;
    background: #fff;
    border-radius: .5rem;
    padding: 1.5rem;
    flex-direction: column;
}


.cancel-info .item {
    display: flex;
    gap: 1rem;
}

.cancel-info .item .title {
    font-weight: 600;
}
.cancel-info .detail {
    font-size: .875rem;
    color:var(--bs-gray-600);
}


.review-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.review-wrap .item {

}

.review-wrap .item .name {
    font-weight: 700;
}
.review-wrap .item .star {
    color:var(--bs-orange);
    margin:.5rem 0
}
.review-wrap .item .text {
    font-size: .875rem;
    color:var(--bs-gray-600);
}

.review-wrap .paging {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.review-wrap .paging a {
    color: var(--bs-gray-500);
    padding: .5rem 1rem;
}

.review-wrap .paging a.active {
    font-weight: 700;
    color:var(--bs-gray-900)
}

.avatar-24 {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 5rem;
    background: var(--bs-gray-300);
}


.avatar-40 {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 5rem;
    background: var(--bs-gray-300);
}

.avatar img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 5rem;
}


.avatar-56 {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 5rem;
    background: var(--bs-gray-300);
}

.avatar-56 img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 5rem;
}

.empty {
    display: block;
    background-image: url(../images/svg/user-5-line.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .2;
}


#product-user {
    border-top: 1px solid var(--bs-gray-200);
    border-bottom: 1px solid var(--bs-gray-200)
}

.wish-btn {
    color: var(--bs-gray-500)
}

.wish-btn i {
    display: inline-block;
    /* ✨ 중요 */
    transition: color 0.3s;
}

.wish-btn.active {
    color: var(--bs-gray-900)
}

.wish-btn.active i {
    color: #ff9900;
}

.animate-icon {
    animation: rotate-scale-up 0.65s linear both;
}

@keyframes rotate-scale-up {
    0% {
        transform: scale(1) rotateZ(0deg);
    }

    50% {
        transform: scale(2) rotateZ(180deg);
    }

    100% {
        transform: scale(1) rotateZ(360deg);
    }
}


.null {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem;
    width: 100%;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--bs-gray-400)
}

.null .image {
    font-size: 4rem
}


/*Recruit*/


#recruit-page {
    display: flex;
    flex-direction: column;
}

#recruit-page .recruit-card {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--bs-gray-200);
    background-color: #fff;
}

#recruit-page .recruit-card:last-child {
    border-bottom: 0;
}

#recruit-page .recruit-card a {
    display: flex;
    justify-content: space-between;
}

#recruit-page .recruit-info {
    flex: 1;
    margin-right: 1rem;
}

#recruit-page .recruit-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: .5rem;
}

#recruit-page .recruit-meta {
    font-size: 12px;
    color: var(--bs-gray-700);
    margin-bottom: 6px;
}

#recruit-page .recruit-price {
    font-size: .875rem;
    margin-bottom: .5rem;
}

#recruit-page .recruit-date {
    font-size: 13px;
    color: var(--bs-gray-600);
    line-height: 1.4;
    margin-bottom: .5rem;
}

#recruit-page .recruit-tags .tag {
    display: inline-block;
    font-size: 12px;
    padding: .5rem;
    border-radius: .5rem;
    margin-right: .5rem;
}

.tag.green {
    background-color: #e6f7e6;
    color: var(--bs-green);
}

.tag.gray {
    background-color: var(--bs-gray-100);
    color: var(--bs-gray-500);
}

#recruit-page .recruit-image img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
}


#jobs-info ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

#jobs-info ul li {
    display: flex;
    gap: .5rem;
    flex-direction: row;
    align-items: center;
}

#jobs-info ul li .icon {
    font-size: 1.25rem;
}

#jobs-info ul li .text {
    font-size: 1rem;
    color: var(--bs-gray-800);
}

.map .address-wrap {
    display: flex;
    gap: .5rem;
    align-items: center;
    color: var(--bs-gray-800);
}

#weekday-wrapper label {
    display: block;
}

.btn-day {
    border-radius: 999px;
    width: 40px;
    height: 40px;
    padding: 0;
    font-weight: 500;
}

.btn-day.active {
    background-color: var(--bs-gray-900);
    color: white;
}

.time-select {
    width: 100%;
}

.label-small {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.jobs-filter-wrap {
    margin-bottom: 2rem;
}

.jobs-filter-wrap h3 {
    margin-bottom: 1rem;
}


/*MyPage*/

.mypage-logout {
    background: var(--bs-gray-100);
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 1.5rem auto 0 auto;
}

.mypage-logout .window {
    width: 40%;
    margin: 0 auto;
}

.mypage-logout p {
    color: var(--bs-gray-700);
    text-align: center;
    margin: 1.5rem 0;
}

.mypage-logout .window img {
    width: 100%;
    border-radius: 5rem;
}


.mypage-wrap {
    background-color: var(--bs-gray-100);
    padding: 1.25rem;
    display: flex;
    gap: 1.25rem;
    flex-direction: column;
}

.profile-section {
    background-color: white;
}

.profile-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.profile-left img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 10px;
}

.profile-right {
    font-size: 1.5rem;
}

.service-section {
    background-color: white;
    padding: 1.25rem 0;
    border-radius: 1rem;
}

.service-section .title {
    font-size: 1rem;
    font-weight: 700;
    padding: 0 1.25rem 1rem 1.25rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    text-align: center;
    font-size: .875rem;
}

.service-grid i {
    font-size: 24px;
    margin-bottom: 4px;
}

.service-grid a {
    color: var(--bs-gray-700);
    font-weight: 500;
}

.link-box {
    background-color: white;
    margin-top: 8px;
    padding: 16px;
}

.link-box div {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}



/*Setting*/

.btn-camera {
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 50%;
}

.btn-camera label {
    padding: 0.25rem !important;
    border-radius: 50%;
    background: var(--bs-gray-100);
    width: 32px;
    height: 32px;
    border: 1px solid var(--bs-gray-200);
}


/*List Style*/

.list-text {
    position: relative;
}

.list-text .item {
    border-bottom: 1px solid var(--bs-gray-200);
    display: flex;
    flex-direction: column;
    align-items: start;
}

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

.list-text .item a {
    padding: 1rem 1.25rem
}

.category-meta {
    color: var(--bs-gray-500);
    margin-top: 0.25rem !important;
    font-size: 13px;
}

.category-meta .separator {
    margin: 0 .25rem
}

#product-row-list {
    position: relative;
}

#product-row-list .item-card {
    position: relative;
    border-bottom: 1px solid var(--bs-gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#product-row-list .item-card:last-child {
    border-bottom: 0;
}

#product-row-list .item-card button {
    width: calc(100% - 40px);
    box-sizing: border-box;
    margin: 0 auto 1rem auto;

}

#product-row-list a {
    display: flex;
    align-items: start;
    padding: 1rem 1.25rem;
    position: relative;
}

#product-row-list a h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 줄 수 지정 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 82%;
}

#product-row-list a .thumbnail {
    border-radius: 1rem;
    flex-basis: 30%;
}

#product-row-list a .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 1rem;
}

#product-row-list a .text-wrap {
    margin-left: 1rem !important;
    flex-basis: 70%;
}

.product-meta {
    color: var(--bs-gray-500) !important;
    margin-bottom: 0.25rem !important;
    font-size: 13px;
    display: block !important;
}

.product-meta .separator {
    margin: 0 .25rem
}

.wish-toggle {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    padding: 1rem 1.25rem;
}

.list-icon-btn a {
    padding: .5rem 1.25rem;
    display: flex;
    font-size: 1rem;
    font-weight: 500;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--bs-gray-700);
}

.list-icon-btn a i {
    font-size: 1.5rem;
}

.list-icon-btn a .left {
    font-size: 1rem;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    display: flex;
}


.list-normal {
    padding: 1.25rem 0;
    border-top: 1px solid var(--bs-gray-200);
}

.list-normal .title {
    font-size: 1rem;
    font-weight: 700;
    padding: 0 1.25rem .5rem 1.25rem;
}

.list-normal a,
.list-normal button {
    padding: .5rem 1.25rem;
    display: flex;
    font-size: 1rem;
    font-weight: 500;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--bs-gray-700);
}

.btn-wrap {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.btn-wrap .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--bs-gray-700);
}

.event-card {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.event-card a {
    padding: .5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.event-card .image {
    border-radius: 1rem; 
}

.event-card .image img {
    border-radius: 1rem;
    width: 100%; 
    aspect-ratio: 4/3;
    object-fit: cover;
}

.event-card .title {
    font-weight: 700;
}

.event-card .title .date {
    font-size: .875rem;
    font-weight: 500;
    margin-top: .25rem;
    color: var(--bs-gray-500);
}

#promotion .image img {
    width: 100%;
}

/*Board*/


#board-list {
    display: flex;
    flex-direction: column;
}

#board-list .item a {
    padding: 1rem 1.25rem;
    display: flex;
    gap: .5rem;
    flex-direction: column;
    border-bottom: 1px solid var(--bs-gray-200);
}

#board-list .item:last-child a {
    border-bottom: 0;
}

#board-list .item .date,
#board-document .date {
    color: var(--bs-gray-500);
    font-size: 13px;
}

#board-document .title {
    padding: 1rem 1.25rem;
    display: flex;
    gap: .5rem;
    flex-direction: column;
}

#board-document .content {
    padding: 1rem 1.25rem;
}

#board-document .content p {
    font-size: 1rem;
}

#board-document .content p:empty {
    height: 1.5rem;
}


/*Post*/


#post-card {
    display: flex;
    flex-direction: column;
}

#post-card .item a {
    padding: 1rem 1.25rem;
    display: flex;
    gap: .5rem;
    flex-direction: column;
    border-bottom: 1px solid var(--bs-gray-200);
}

#post-card .item:last-child a {
    border-bottom: 0;
}

#post-card .item .date,
#post-document .date {
    color: var(--bs-gray-500);
    font-size: 13px;
}

#post-card .item .content-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
}

#post-card .item .content-wrap .left {
    display: flex;
    gap: .25rem;
    flex-direction: column;
}

#post-card .item .content-wrap .thumbnail {
    flex-basis: 30%;
}

#post-card .item .content-wrap .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: .5rem;
}

#post-card .item .content {
    color: var(--bs-gray-500);
    font-size: .875rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* 보여줄 줄 수 제한 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#post-card .item .meta {
    color: var(--bs-gray-500);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#post-card .item .category {
    color: var(--bs-gray-500);
    font-size: 12px;
    padding: .25rem .5rem;
    background-color: var(--bs-gray-100);
    width: max-content;
    border-radius: .5rem;
    margin-bottom: .25rem;
}



#post-list {
    display: flex;
    flex-direction: column;
}

#post-list .item a {
    padding: 1rem 1.25rem;
    display: flex;
    gap: .5rem;
    flex-direction: column;
    border-bottom: 1px solid var(--bs-gray-200);
}

#post-list .item:last-child a {
    border-bottom: 0;
}

#post-list .item .date,
#post-document .date {
    color: var(--bs-gray-500);
    font-size: 13px;
}

#post-list .item .meta {
    color: var(--bs-gray-500);
    font-size: 13px;
}

#post-document .container {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

#post-document .category {
    display: flex;
    justify-content: flex-start;
    gap: .25rem;
}

#post-document .category .item {
    font-size: .875rem;
    color: var(--bs-gray-600);
    background-color: var(--bs-gray-100);
    border-radius: 2rem;
    display: flex;
    gap: .25rem;
    padding: .25rem .85rem;
    font-weight: 600;
    align-items: center;
}

#post-document .category .item i {
    font-size: 1rem;
    color: var(--bs-gray-700);
}

#post-document .content p {
    font-size: 1rem;
    padding-bottom: .5rem;
}

#post-document .view {
    font-size: .875rem;
    color: var(--bs-gray-600);
}

#post-document .view i {
    font-size: 1rem;
    color: var(--bs-gray-700);
}

#post-document .cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#post-reply .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bs-gray-600);
    font-size: .875rem;
    font-weight: 500;
    padding: 0 1.25rem;
}

#post-reply .top .sort button {
    padding: 1rem .25rem;
    color: var(--bs-gray-600);
    font-size: .875rem;
    font-weight: 500;
}

#post-reply .reply-wrap .reply {
    padding-left: 4.5rem !important;
}

#post-reply .reply-wrap .item {
    position: relative;
    padding: 0.5rem 1.25rem;
}

#post-reply .reply-wrap .item .comment {
    padding-left: 3.5rem;
    padding-top: .25rem;
}

#post-reply .reply-wrap .item .cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: .5rem;
    gap: .5rem;
}

#post-reply .reply-wrap .item .cta button {

    color: var(--bs-gray-500);
    font-size: 13px;
    font-weight: 500;
    padding: 0
}

#post-reply .reply-wrap .item .cta-more {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1rem;
    z-index: 2;
}

#actionSheetModal1 .modal-dialog,
#actionSheetModal2 .modal-dialog {
    position: fixed;
    bottom: 0;
    margin: 0;
    width: 100%;
    max-width: none;
}

#actionSheetModal1 .modal-content,
#actionSheetModal2 .modal-content {
    border-radius: 16px 16px 0 0;
    padding: 1rem 1.25rem;
    gap: .5rem;
    background: var(--bs-gray-100);
}


.sales-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.sales-title button {
    font-size: 1.25rem;
    color: var(--bs-gray-400);
}


.job-type-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.job-type-card.active {
    border-color: #ff5e00;
    background-color: #fffaf5;
}

.flatpickr-calendar.inline {
    width: 100%;
    box-shadow: none;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.inRange {
    background: #212529;
    color: #fff;
    border-radius: 50% !important;
}

.flatpickr-day.today {
    border-color: #000;
}

.flatpickr-input {
    display: none;
}

.modal-bottom-sheet {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0;

}

.modal-bottom-sheet .modal-content {
    border-radius: 0;
}


.scroll-time-picker {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.scroll-column {
    width: 45%;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: y mandatory;
    mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.scroll-column::-webkit-scrollbar {
    display: none;
}

.scroll-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
}

.scroll-list li {
    padding: 10px 0;
    scroll-snap-align: center;
    opacity: 0.3;
    transition: opacity 0.2s;
}

.scroll-list li.selected {
    font-weight: bold;
    opacity: 1;
    font-size: 1.25rem;
}


#jobs-write {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#jobs-write .input-section h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}


#date-count {
    font-size: 1rem;
    color: var(--bs-gray-700);
    margin: 1rem 0;
    text-align: center;
}

#date-count .date {
    font-weight: 600;
    color: var(--bs-gray-800)
}

/*Register*/

.toggle-link {
    text-decoration: underline;
    color: var(--bs-gray-500);
}

#content1 {
    font-size: 13px;
}


.complete-box {

    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.complete-box .title {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.3;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999;
}

/*User*/

#userTab .nav-link {
    padding: 1rem;
}

#post-list {
    max-width: 600px;
    margin: 0 auto;
}

#post-list .review-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

#post-list .profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

#post-list .review-content {
    flex: 1;
}

#post-list .meta {
    font-size: 14px;
    margin-bottom: 4px;
}

#post-list .nickname {
    font-weight: bold;
    margin-right: 6px;
}

#post-list .role {
    color: #888;
}

#post-list .message {
    font-size: 15px;
    margin: 0;
    color: #333;
}

#post-list .item-img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    border-radius: 6px;
    object-fit: cover;
}

.delete-icon {
    background: white;
    border-radius: 50%;
    transform: translate(25%, -25%);
}



/*Search*/

#search-header {
    padding: 0 1.25rem 0 0;
}

#search-top {
    display: flex;
    align-items: center;
}

.search-input {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 8px 12px;
}



.keyword-list h6 {
    margin-bottom: 10px;
}

.keyword-item {
    display: inline-block;
    padding: 6px 10px;
    margin: 4px;
    background-color: var(--bs-gray-100);
    border-radius: 6px;
    font-size: .875rem;
    color: var(--bs-gray-700);
}

.recommend-section {
    margin-top: 1.5rem;
}

.keyword-title,
.recommend-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.recommend-section .product-card {
    text-align: center;
    padding: .5rem 0 1.5rem 0;
}

.recommend-section .product-card img {
    width: 100%;
    border-radius: .5rem;
    aspect-ratio: 1 / 1;
    margin-bottom: 6px;
}

.recommend-section .product-name {
    font-size: .875rem;
    color: var(--bs-gray-900);
}

/*Terms-Policy*/

#terms-policyContent ul {
    padding-bottom: 1rem;
}


#terms-policyContent ul li {
    font-size: .875rem;
}

#terms-policyContent h3,
#terms-policyContent h4,
#terms-policyContent h5,
#terms-policyContent p {
    padding-bottom: 1rem;
}


/*PC*/
@media screen and (min-width:1025px) {


    body {
        background: var(--bs-gray-100);
    }

    #wrap {
        height: auto;
        min-height: 100vh;
    }

    #fixed-bottom {
        max-width: 500px;

    }

    #page-header.fixed {

        left: 50%;
        transform: translateX(-50%);
    }

    .fixed-contact {
        max-width: 500px;

    }


}