/* ================================
   공통 스타일
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #3c3c3c;
    background-color: #fff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ================================
   헤더
   ================================ */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 64px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
    gap: 20px;
}

.header-logo {
    height: auto;
}

.header-logo img {
    width: 100%;
    height: auto;
}

.header-mainMenu {
    display: flex;
    gap: 64px;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.header-mainMenu-item {
    font-size: 16px;
    font-weight: 600;
    color: #3c3c3c;
    transition: color 0.3s ease;
}

.header-mainMenu-item:hover {
    color: #b8860b;
}

.header-loginMenu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.header-loginMenu-item {
    font-size: 14px;
    font-weight: 600;
    color: #3c3c3c;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.header-loginMenu-item:hover {
    opacity: 1;
}

/* ================================
   배너
   ================================ */
.banner {
    position: relative;
    width: 100%;
    max-width: 2000px;
    margin: 40px auto;
    padding: 0 60px;
}

.banner-bannerPhoto {
    display: flex;
    position: relative;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    border-radius: 50px;
    overflow:hidden;
}

.banner-item{
    min-width: 100%;
    flex-shrink: 0;
}

.banner-link {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 38%;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(60, 60, 60, 0.2);
}

.banner-indicators{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin-top: 0;
}

.banner-indicators .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid white;
    background-color: white;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.banner-indicators .active {
    width: 33px;
    height: 7px;
    border-radius: 15px;
    border: 1px solid white;
    background-color: white;
    cursor: pointer;
}

.banner-indicators .dot:hover {
    opacity: 1;
}

/* ================================
   New Menu
   ================================ */
.newMenu {
    position: relative;
    padding: 80px 64px;
    background-color: #fff;
    max-width: 1920px;
    margin: 0 auto;
}

.newMenu-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #3c3c3c;
}

.newMenu-pinkbear {
    position: absolute;
    z-index: 10;
    width: 150px;
    height: auto;
    top: -100px;
    left: 0;
}

.newMenu-container {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow: hidden;
}

.newMenu-button {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background-color: white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newMenu-button:hover {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.16);
}

.newMenu-icon {
    width: 9.16px;
    height: 16px;
    color: #3c3c3c;
}

.newMenu-items {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.newMenu-items::-webkit-scrollbar {
    height: 4px;
}

.newMenu-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.newMenu-items::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.newMenu-items::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.newMenu-link {
    flex-shrink: 0;
    width: 340px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 24px rgba(230, 223, 199, 0.24);
    transition: all 0.3s ease;
}

.newMenu-link:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 32px rgba(230, 223, 199, 0.32);
}

.newMenu-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.newMenu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newMenu-background {
    width: 100%;
    padding: 24px;
    background-color: white;
    height: 108.8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newMenu-productName {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #212121;
    line-height: 1.1;
}

/* ================================
   Best Menu
   ================================ */
.bestMenu {
    position: relative;
    padding: 80px 64px;
    background-color: #fff7d7;
    max-width: 1920px;
    margin: 0 auto;
}

.bestMenu-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #3c3c3c;
}

.bestMenu-container {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow: hidden;
}

.bestMenu-button {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background-color: white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bestMenu-button:hover {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.16);
}

.bestMenu-icon {
    width: 9.16px;
    height: 16px;
    color: #3c3c3c;
}

.bestMenu-items {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.bestMenu-items::-webkit-scrollbar {
    height: 4px;
}

.bestMenu-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.bestMenu-items::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.bestMenu-items::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.bestMenu-link {
    flex-shrink: 0;
    width: 340px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 24px rgba(230, 223, 199, 0.24);
    transition: all 0.3s ease;
}

.bestMenu-link:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 32px rgba(230, 223, 199, 0.32);
}

.bestMenu-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.bestMenu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bestMenu-background {
    width: 100%;
    padding: 24px;
    background-color: white;
    height: 108.8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bestMenu-productName {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #212121;
    line-height: 1.1;
}

/* ================================
   푸터
   ================================ */
.footer {
    background-color: #cae5f5;
    padding: 60px 64px 40px;
    max-width: 1920px;
    margin: 0 auto;
    border-radius: 40px 40px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-info,
.footer-social,
.footer-help {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #3c3c3c;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    font-size: 14px;
    color: #666;
    line-height: 2;
}

.footer-list a {
    color: #666;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #3c3c3c;
}

.footer-copyright {
    border-top: 1px solid #e0dbd0;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright a {
    color: #666;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #3c3c3c;
}

.divider {
    color: #ddd;
}

/* ================================
   반응형 디자인
   ================================ */
@media (max-width: 1200px) {
    .header {
        padding: 24px 40px;
    }
    
    .header-mainMenu {
        gap: 40px;
    }
    
    .newMenu,
    .bestMenu,
    .banner,
    .footer {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .newMenu-title,
    .bestMenu-title {
        font-size: 40px;
        margin-bottom: 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 24px;
        flex-direction: column;
        gap: 16px;
    }
    
    .header-logo {
        width: 120px;
    }
    
    .header-mainMenu {
        gap: 20px;
        font-size: 14px;
        order: 3;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .header-loginMenu {
        gap: 20px;
        font-size: 12px;
    }
    
    .banner {
        padding: 0 24px;
    }
    
    .banner-indicators {
        gap: 8px;
        padding: 16px 0;
    }
    
    .banner-circle,
    .banner-slide {
        width: 8px;
        height: 8px;
    }
    
    .banner-slide {
        width: 20px;
    }
    
    .newMenu,
    .bestMenu {
        padding: 40px 24px;
    }
    
    .newMenu-title,
    .bestMenu-title {
        font-family: 'Gravitas One', serif;
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .newMenu-pinkbear {
        width: 120px;
        height: 160px;
        right: 20px;
        top: -100px;
    }
    
    .newMenu-container,
    .bestMenu-container {
        gap: 12px;
    }
    
    .newMenu-button,
    .bestMenu-button {
        width: 40px;
        height: 40px;
    }
    
    .newMenu-link,
    .bestMenu-link {
        width: 280px;
        min-width: 280px;
    }
    
    .newMenu-image,
    .bestMenu-image {
        height: 280px;
    }
    
    .newMenu-productName,
    .bestMenu-productName {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .newMenu-link,
    .bestMenu-link {
        width: 240px;
        min-width: 240px;
    }
    
    .newMenu-image,
    .bestMenu-image {
        height: 240px;
    }
}

/* ================================
   애니메이션
   ================================ */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newMenu-link,
.bestMenu-link {
    animation: slideIn 0.5s ease-out;
}

/* ================================
   팝업 및 기타
   ================================ */
.popup {
    position: fixed;
    z-index: 9999;
    background: #ffffd9;
    width: 60%;
    height: 600px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8em;
    box-shadow: inset 0 0 5px #333;
    padding: 1em;
    border-radius: 50%;
    color: #7dc1e1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    bottom: 50%;
}

.popup h1 {
    font-family: 'Gravitas One', serif;
    font-size: 200%;
}

.popup p {
    font-family: "Song Myung", serif;
    color: #7a7a7a;
}

.unrelated {
    color: rgb(255, 179, 191);
}

.popup button {
    position: absolute;
    left: 50%;
    bottom: 18%;
    transform: translateX(-50%);
    font-size: 0.7em;
    padding: 10px 20px;
    border: 3px dashed rgba(255, 199, 94, 0.795);
    border-radius: 5em;
}

.bestMenu-title, .newMenu-title {
    font-family: 'Gravitas One', serif;
    font-size: 50px;
    margin-bottom: 40px;
}

.bestMenu-background, .newMenu-background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.bestMenu-productName, .newMenu-productName {
    color: #7a7a7a;
    font-weight: 300;
}

.bestMenu-productNameEng, .newMenu-productNameEng {
    font-weight: 700;
}
/* ================================
   Ring Menu
   ================================ */
.ringMenu {
    position: relative;
    padding: 80px 64px;
    background-color: #fff; /* 또는 #fafafa (원하시는 배경색으로 선택) */
    max-width: 1920px;
    margin: 0 auto;
}

.ringMenu-title {
    font-family: 'Gravitas One', serif;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #3c3c3c;
}

.ringMenu-container {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow: hidden;
}

.ringMenu-button {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background-color: white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ringMenu-button:hover {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.16);
}

.ringMenu-icon {
    width: 9.16px;
    height: 16px;
    color: #3c3c3c;
}

.ringMenu-items {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}


.ringMenu-items::-webkit-scrollbar { height: 4px; }
.ringMenu-items::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 4px; }
.ringMenu-items::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.ringMenu-link {
    flex-shrink: 0;
    width: 340px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 24px rgba(230, 223, 199, 0.24);
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out; /* 기존 애니메이션 적용 */
}

.ringMenu-link:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 32px rgba(230, 223, 199, 0.32);
}

.ringMenu-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.ringMenu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ringMenu-background {
    width: 100%;
    padding: 24px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ringMenu-productName {
    font-size: 20px;
    color: #7a7a7a;
    font-weight: 300;
    text-align: center;
    line-height: 1.1;
}

.ringMenu-productNameEng {
    font-weight: 700;
}


@media (max-width: 768px) {
    .ringMenu { padding: 40px 24px; }
    .ringMenu-title { font-size: 32px; }
    .ringMenu-link { width: 280px; min-width: 280px; }
    .ringMenu-image { height: 280px; }
}

/* ========== Challenge swiper ========= */
.swiper1 {
    width: 100%;
    height: auto;
    margin: 40px auto;
    max-width: 90%;
    background-color: rgb(53, 53, 53);
    padding: 50px 0;
}

.swiper1 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper1 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5%;
}

