@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;400;700;900&display=swap');

:root {
    --bg-main: #f9f9f7;
    --bg-card: #ffffff;
    --text-primary: #121212;
    --text-secondary: #5a5a5a;
    --text-gray: #999;
    --accent: #e9920a;
    --accent-rgb: 233, 146, 10;
    --accent2: #13568d;
    --accent2-rgb: 19, 86, 141;
    --accent-glow: rgba(176, 141, 87, 0.2);
    --radius-lg: 32px;
    --radius-md: 16px;
    --transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --container-width: 1480px;
    --font-family: 'Pretendard', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
}

body *,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
li,
ul,
ol,
dl,
dt,
dd,
table,
tr,
td,
th,
tbody,
thead,
tfoot,
header,
footer,
section,
article,
aside,
nav,
main {
    word-break: keep-all;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-family);
    background: var(--bg-main);
    color: var(--text-primary);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body * {
    font-family: var(--font-family);
}

.mw_container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* --- 1. Wide Pill Header --- */
#hd {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    /* Increased Width */
    max-width: calc(var(--container-width) - 40px);
    /* Increased Max-Width */
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 0px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    /* Pill Shape */
    z-index: 10000;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

#hd.shrink {
    top: 10px;
    height: 70px;
    background: #333d46;
}

#hd.shrink .nav_item>a {
    color: #fff;
}

#hd.shrink .mw_logo img {
    filter: brightness(0) invert(1);
}



.mw_logo {
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 2px;
}

.mw_logo span {
    color: var(--accent);
}

.mw_nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 0;
    height: 100%;
    padding-right: 100px;
}

.nav_item {
    position: static;
    /* Fixed: Not relative, so panel aligns to header context */
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
    margin: 0 10px;
}


.nav_item>a {
    font-weight: 700;
    font-size: 22px;
    /* Increased Size */
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

/* Mega Panel Redesign */
.mega_panel {
    position: absolute;
    top: calc(100% + 15px);
    /* 20px gap for a clean, floating look */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 1) !important;
    /* Increased opacity for richer look */
    backdrop-filter: blur(40px) saturate(1.8);
    /* Improved backdrop effect */
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    padding: 65px 85px;
    border-radius: 14px;
    /* More modern floating rounded corners */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
    /* More visible border */
    transform: translateY(20px);
}

/* Invisible Bridge to maintain hover across the gap */
.mega_panel::before {
    content: '';
    position: absolute;
    top: -30px;
    /* Covers the 20px gap + safety margin */
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
    z-index: -1;
}

.nav_item:hover .mega_panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.panel_inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.panel_info {
    width: 350px;
}

.panel_info h3 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.panel_info p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.panel_links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* --- page margin --- */
.subpage_top_header {
    text-align: center;
    margin-bottom: 80px;
}

.subpage_top_header .label {
    display: block;
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 5px;
    color: #b9b9b9;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: none;
}

.subpage_top_header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1.5px;
}

.page_top_margin {
    height: 0;
}

.page_top_margin.sub {
    height: 180px;
}

.page_bot_margin {
    height: 0;
}

.page_bot_margin.sub {
    height: 100px;
}

@media (max-width:900px) {
    .page_top_margin.sub {
        height: 120px;
    }

    .subpage_top_header {
        margin-bottom: 40px;
    }

    .subpage_top_header h2 {
        font-size: 30px;
    }
}

.def_page {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 60px;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* --- Utility Icons --- */
.mw_util {
    display: flex;
    align-items: center;
    gap: 20px;
}

.naver_blog_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #2DB400;
    color: #fff;
    border-radius: 14px;
    font-size: 30px;
    transition: var(--transition);
}

.naver_blog_link:hover {
    /* Naver Green */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 180, 0, 0.3);
}

.naver_blog_link svg {
    width: 18px;
    height: 18px;
}

.panel_links a {
    background: #f8f8f8;
    padding: 18px 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    transition: all 0.2s;
}

.panel_links a:hover {
    background: var(--accent);
    color: #fff;
}

.panel_links a::after {
    content: '\f105';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 14px;
}

/* --- 2. Kinetic Hero --- */
.mw_hero {
    height: calc(100vh - 120px);
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero_magazine {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 100px;
    align-items: center;
}

/* --- 3. Archive Product Grid --- */
.mw_products {
       padding: 180px 0 100px 0;
}

@media (max-width:1000px) {
	.mw_products {padding:120px 0;}
}

.mw_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.mw_card {
    background: transparent;
    transition: var(--transition);
    position: relative;
}

.mw_card .img_box {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.mw_card .img_box .no_image {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100% !important;
    font-size: 13px;
    color: #bbb;
    letter-spacing: 0;
    text-transform: none;
    background: #efefef;
}

.mw_card .img_box .no_image i {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
    opacity: 0.5
}

.mw_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

@media (max-width:900px) {
    .mw_card .img_box .no_image {
        padding: 60px 0;
    }
}

/* Dual Hover Buttons */
.hover_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
}

.mw_card:hover .hover_overlay {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.btn_card_hover {
    padding: 15px 35px;
    background: #fff;
    color: #000;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn_card_hover.dark {
    background: #000;
    color: #fff;
}

.btn_card_hover:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.mw_card:hover img {
    transform: scale(1.1);
    filter: blur(5px) brightness(0.8);
}

/* Bottom Right Icons with Labels */
.card_detail_icons {
    position: absolute;
    bottom: -5px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.detail_icon_item {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #888;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
}

.detail_icon_item:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.detail_icon_item .tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: #000;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s;
}

.detail_icon_item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mw_card h4 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 5px;
}

.mw_card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.mw_card .meta {
    padding-right: 100px;
    position: relative;
    margin-top: 15px;
}

.mw_card h4 {
    line-height: 1.4;
    transition: var(--transition);
}

.mw_card:hover h4 {
    color: var(--accent);
}

/* Side Floating Banner - Premium Glassmorphism */
.mw_side_banner {
    position: fixed;
    right: 15px;
    /* Floating away from edge */
    bottom: 30px;
    width: 220px;
    /* Slightly wider for better content flow */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(1.8);
    -webkit-backdrop-filter: blur(25px) saturate(1.8);
    z-index: 10000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.6s cubic-bezier(0.3, 1, 0.3, 1);
    transform: translateX(0);
}

.mw_side_banner.closed {
    transform: translateX(calc(100% + 15px));
    /* Slide out completely with safety margin */
}

.side_toggle {
    position: absolute;
    top: 50%;
    left: -40px;
    /* Wider button */
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    border-radius: 20px 0 0 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-right: none;
    color: #444;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -15px 0 30px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}


.mw_side_banner.closed .side_toggle i {
    transform: rotate(180deg);
    /* Flip arrow sign */
}

.side_inner {
    width: 100%;
    padding: 10px 0;
}

.side_menu {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.side_menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 800;
    color: #222;
    transition: all 0.2s;
}

.side_menu a i {
    font-size: 22px;
    color: var(--accent);
}

.side_menu a:hover {
    color: var(--accent);
}

.side_menu a:hover i {
    color: var(--accent);
}


.side_cs {
    padding: 25px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.side_cs h5 {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 12px;
}

.side_cs p {
	font-size:15px;
	line-height:1.5;
}

.side_cs .cs_num {
    font-size: 23px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    line-height: 1;
}

.side_time p {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.side_time p span {
    font-weight: 800;
    color: #333;
}

.side_bank {
    padding: 20px 25px;
    font-size: 12px;
    border-radius: 0 0 30px 30px;
}

.side_bank p {
    color: #888;
    margin-bottom: 6px;
    font-weight: 700;
}

.side_bank strong {
    font-family: 'Outfit';
    font-size: 14px;
    font-weight: 900;
    color: #222;
}

.side_top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    margin: 20px;
    padding: 15px;
    background: #000;
    color: #fff !important;
    border-radius: 15px;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 13px;
    transition: all 0.2s;
}

.side_top:hover {
    background: var(--accent);
}

/* --- 6. Quick Access Discovery Grid --- */
.mw_discovery {
    padding: 150px 0;
    background: var(--bg-main);
}

.discovery_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
    gap: 30px;
}

.discovery_item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.discovery_item:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.discovery_item.wide {
    grid-column: span 2;
}

.discovery_item.tall {
    grid-row: span 2;
}

.discovery_item .dec_icon {
    width: 60px;
    height: 60px;
    background: #f8f8f6;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--accent);
}

.discovery_item h4 {
    font-size: 32px;
    font-weight: 900;
    margin-top: 25px;
    line-height: 1.2;
}

.discovery_item p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 10px;
    opacity: 0.6;
}

.discovery_item .btn_discovery {
    position: absolute;
    bottom: 45px;
    right: 45px;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 10;
}

.discovery_item:hover .btn_discovery {
    opacity: 1;
    transform: translateX(0);
}

/* --- Discovery Swiper (Cases) --- */
.discovery_item.swiper_box {
    padding: 0;
    display: block;
}

.discovery_item.swiper_box .swiper_header {
    padding: 45px;
}

.discovery_item.swiper_box .swiper_nav_next,
.discovery_item.swiper_box .swiper_nav_prev {
    top: 40%;
}

.pointer {
    cursor: pointer;
}

/* --- 7. Mid Swiper Banner - Multi-Style Swiper --- */
.mw_mid_banner {
    padding: 100px 0 0 0;
    overflow: hidden;
}

.mid_banner_container {
    width: 100%;
}

.mw_mid_swiper {
    width: 100%;
    overflow: visible;
    /* Allow shadow or overflow if needed */
}

/* --- NEW: Cinematic Panoramic Mid-Banner --- */
.mw_mid_slide {
    height: 350px;

    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
}

/* Background Large Text */
.slide_bg_name {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 150px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
    font-family: 'Outfit';
    letter-spacing: -5px;
}

.slide_content {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Fixed Image Area */
.slide_img_box {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide_img_box img {
    width: 150%;
    height: 150%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide_img_box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(17, 17, 17, 0.4));
}

.slide_number {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    font-size: 180px;
    font-weight: 900;
    font-family: 'Outfit';
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

/* Content Area */
.slide_text_box {
    flex: 1.2;
    padding: 50px 80px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #111;
    position: relative;
    z-index: 5;
}

.slide_text_box .label {
    display: inline-block;
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
}

.slide_text_box h3 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 5;
}

.slide_text_box p {
    font-size: 17px;
    color: rgba(1, 1, 1, 0.6);
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

/* Modified Premium Button */
.mw_mid_slide .btn_mid_white {
    padding: 16px 45px;
    background: var(--accent);
    color: #fff !important;
    border: none;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
    width: fit-content;
    position: relative;
    z-index: 5;
}

.mw_mid_slide .btn_mid_white:hover {
    background: #111;
    color: #fff !important;
    transform: translateY(-3px);
}

.mw_mid_slide:hover img {
    transform: scale(1.08);
}

.mw_discovery_swiper {
    width: 100%;
    height: 480px;
    padding: 0 45px 65px !important;
    /* increased bottom padding for nav */
    position: relative;
    overflow: hidden;
}

/* Swiper Navigation Custom */
.swiper_nav_next,
.swiper_nav_prev {
    width: 44px !important;
    height: 44px !important;
    background: #000 !important;
    color: #fff !important;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.2s;
    z-index: 50;
}

.swiper_nav_next:after,
.swiper_nav_prev:after {
    font-size: 16px !important;
    font-weight: 900;
}

.swiper_nav_next {
    right: 10px !important;
}

.swiper_nav_prev {
    left: 10px !important;
}

.swiper_nav_next:hover,
.swiper_nav_prev:hover {
    opacity: 1;
    transform: scale(1.1);
    background: var(--accent) !important;
}

.discovery_slide {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

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

.discovery_slide .slide_info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.discovery_slide .slide_info h5 {
    font-size: 18px;
    font-weight: 800;
}

.discovery_slide .slide_info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 5px;
}

/* --- Discovery Notice List --- */
.discovery_item.notice_box {
    background: #333d46;
    color: #fff;
    border: none;
    justify-content: flex-start;
}

.discovery_item.notice_box .dec_icon {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    margin-bottom: 25px;
}

.discovery_item.notice_box h4 {
    margin-top: 0;
    margin-bottom: 30px;
}

.notice_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notice_item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice_item:last-child {
    border: none;
}

.notice_item .n_title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice_item .n_date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Outfit';
}

.discovery_item.notice_box .btn_discovery {
    background: var(--accent);
}

/* Override Reset */
#wrapper {
    background: var(--bg-main) !important;
    padding: 0 !important;
}

#container {
    padding: 0 !important;
}

#hd_login_msg,
#hd_v_menu,
#ft {
    display: none !important;
}

/* --- 8. Home Utility Classes (Replaces Inline) --- */
.hero_text_side {
    z-index: 10;
}

.hero_label {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero_title {
    font-size: 65px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -3px;
}

.hero_desc {
    font-size: 20px;
    color: #888;
    margin-top: 30px;
    max-width: 500px;
    line-height: 1.8;
}

.hero_btns {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.btn_hero_accent {
    background: var(--accent2);
    color: #fff;
    padding: 22px 50px;
    border-radius: 100px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn_hero_outline {
    border: 1px solid #ddd;
    color: #000;
    padding: 22px 50px;
    border-radius: 100px;
    font-weight: 800;
    background: #fff;
}

.hero_visual_side {
    position: relative;
}

.hero_visual_main {
    width: 100%;
    height: 550px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
}

.hero_visual_sub {
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 350px;
    height: 350px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.1);
    border: 12px solid #fff;
}

.hero_img_fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section_header_flex {
    margin-bottom: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section_label {
    letter-spacing: 5px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 10px;
}

.section_title_lg {
    font-size: 60px;
    font-weight: 800;
}

.btn_section_more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: #000;
    color: #fff !important;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 1px;
}

.btn_section_more i {
    font-size: 18px;
    transition: transform 0.2s;
}

.btn_section_more:hover {
    background: var(--accent2);

}

.btn_section_more:hover i {
    transform: translateX(8px);
}

.collection_more_box {
    text-align: center;
    margin-top: 120px;
}

.collection_more_link {
    font-family: 'Pretendard';
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 5px;
    border-bottom: 3px solid #000;
    padding-bottom: 12px;
    color: #000;
    border-radius: 0 !important;
    transition: all 0.2s;
}

.collection_more_link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.mw_showcase_section {
    padding: 60px 0 200px 0;
}

.mw_bento {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
}

.bento_large {
    background: #111;
    border-radius: 40px;
    padding: 70px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bento_bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.bento_content_stacked {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento_label {
    letter-spacing: 8px;
    font-weight: 800;
    opacity: 0.6;
}

.bento_title_lg {
    font-size: 46px;
    font-weight: 800;
    margin: 25px 0 40px 0;
    line-height: 1.2;
}

.bento_link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    transition: all 0.2s;
}

.bento_link:hover {
    color: var(--accent);
    transform: translateX(10px);
}

.bento_small {
    background: #f4f4f2;
    border-radius: 40px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
}

.bento_title_sm {
    font-size: 32px;
    font-weight: 900;
}

.bento_desc_sm {
    color: #666;
    margin-top: 25px;
    font-size: 17px;
    line-height: 1.6;
}

.bento_btn_cta {
    background: #000 !important;
    color: #fff !important;
    padding: 25px !important;
    border-radius: 25px !important;
    text-align: center !important;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    display: block;
}

.bento_btn_cta:hover {
    background: var(--accent) !important;
    transform: translateY(-5px);
}

.panel_links_4col {
    grid-template-columns: repeat(4, 1fr) !important;
}

.card_category {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    display: none;
}

.card_title {
    font-size: 20px;
    font-weight: 800;
}

.mw_footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 120px 0 60px;
}

.footer_grid {
    display: grid;
    grid-template-columns: 3fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.footer_logo {
    margin-bottom: 25px;
}

.footer_logo img {
    height: 50px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.mw_footer {
    background: #111;
    color: #fff;
    padding: 80px 0 60px;
    border-top: none;
}

/* 1. Top Section - Company Info */
.footer_main {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_logo_box img {
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer_info_box {
    flex: 1;
    padding-top: 10px;
}

.info_summary {
    margin-bottom: 10px;
}

.info_summary strong {
    font-size: 15px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.7);
}

.v_line {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.info_details {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    align-items: center;
    line-height: 1.6;
}

.footer_legal {
    margin-bottom: 25px;
    display: flex;
    gap: 30px;
}

.footer_legal a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    transition: var(--transition);
}

.footer_legal a:first-child {
    color: var(--accent);
}

.footer_legal a:hover {
    color: #fff;
    text-decoration: underline;
}

/* 2. Middle Section - Navigation */
.footer_nav {
    margin-top: 40px;
    padding-top: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer_menu_wrap {
    display: grid;
    gap: 40px;
}

.f_menu_col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
}

.f_menu_title {
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.f_sub_links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f_sub_link {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}


/* 3. Bottom Section - Copyright */
.footer_bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright,
.copyright a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
    letter-spacing: 1px;
}


/* 9. Responsive System */

/* Mobile Nav Elements Styles */
.mobile_btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 10px;
    z-index: 10002;
}

.mobile_btn span {
    width: 24px;
    height: 2px;
    transition: var(--transition);
    background: #000;
}

#hd.shrink .mobile_btn span {
    background: #fff;

}

.mw_m_nav_panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 100001;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.mw_m_nav_panel.active {
    transform: translateX(-100%);
}

.m_nav_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.m_logo {
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 2px;
}

.m_logo span {
    color: var(--accent);
}

.m_close_btn {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #000;
}

.m_nav_content {
    flex: 1;
    overflow-y: auto;
}

.m_nav_item {
    border-bottom: 1px solid #f0f0f0;
}

.m_nav_title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.m_nav_title i {
    font-size: 24px;
    transition: transform 0.4s;
    color: #bbb;
}

.m_nav_title.active {
    color: var(--accent);
}

.m_nav_title.active i {
    transform: rotate(180deg);
    color: var(--accent);
}

.m_links {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0 30px 25px;
}

.m_links a {
    font-size: 20px;
    font-weight: 700;
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.m_links a::after {
    content: '\f105';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 18px;
    color: #d5d5d5;
}

.m_nav_footer {
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    font-weight: 800;
    color: #ccc;
    letter-spacing: 1px;
}

.m_nav_footer span {
    color: var(--accent);
}

.mw_m_nav_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mw_m_nav_mask.active {
    opacity: 1;
    visibility: visible;
}

/* --- 9. Responsive Overrides --- */

html,
body {
    width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
}

#wrapper,
#container,
.mw_container {
    box-sizing: border-box !important;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
}

/* 1400px Breakpoint (iPad Pro / Small Laptop) */
@media screen and (max-width: 1400px) {
    .mw_nav {
        display: none !important;
    }

    .mobile_btn {
        display: flex !important;
    }

    #hd {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        transform: none !important;
        border-radius: 0 !important;
        padding: 0 40px;
        top: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    .mw_hero {
        height: auto;
        min-height: auto;
        padding: 180px 0 100px;
    }

    .hero_magazine {
        display: flex !important;
        flex-direction: column !important;
        text-align: center;
        gap: 60px;
    }

    .text_side {
        order: 2;
        width: 100% !important;
    }

    .hero_visual_side {
        order: 1;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    .hero_visual_sub {
        display: none !important;
    }

    .hero_title {
        font-size: 60px;
        line-height: 1.1;
        word-break: keep-all;
    }

    .hero_desc {
        margin: 30px auto 0;
        max-width: 100%;
    }

    .hero_btns {
        justify-content: center;
    }

    .mw_grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }

    .mw_card .thumb {
        height: 400px;
    }

    .mw_mid_banner {
        padding: 60px 0;
    }

    .mw_mid_slide {
        height: auto !important;
        flex-direction: column !important;
        border-radius: 30px !important;
    }

    .slide_content {
        flex-direction: column !important;
    }

    .slide_img_box {
        width: 100% !important;
        height: 250px !important;
        flex: none !important;
    }

    .slide_text_box {
        width: 100% !important;
        padding: 40px 30px !important;
        text-align: center;
        align-items: center;
        flex: none !important;
    }

    .slide_text_box h3 {
        font-size: 26px !important;
        line-height: 1.4 !important;
    }

    .slide_text_box h3 br {
        display: inline-block;
        width: 0.3em;
        content: "";
    }

    .slide_text_box p {
        font-size: 15px !important;
        margin-bottom: 30px !important;
    }

    .slide_bg_name {
        display: none;
    }

    .slide_number {
        font-size: 100px !important;
        right: 20px !important;
    }

    .mw_discovery {
        padding: 60px 0;
    }

    .discovery_grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px;
        width: 100% !important;
    }

    .discovery_item {
        width: 100% !important;
        height: auto !important;
        min-height: 350px;
        border-radius: 20px;
    }

    .discovery_slide {
        border-radius: 15px;
    }

    .swiper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .discovery_item.swiper_box .swiper_nav_next,
    .discovery_item.swiper_box .swiper_nav_prev {
        top: 50%;
    }
}

/* 768px Breakpoint (Tablet / Phone) */
@media screen and (max-width: 768px) {
    #hd {
        height: 70px !important;
        padding: 0 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
        z-index: 100000 !important;
    }

    .mw_logo a {
        font-size: 20px !important;
        color: #000 !important;
        font-weight: 900 !important;
    }

    .mw_logo a span {
        color: var(--accent) !important;
    }

    .mobile_btn {
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
    }

    .mobile_btn span {
        height: 3px !important;
        width: 28px !important;
    }


    .mw_util .naver_blog_link {
        display: none !important;
    }

    .mw_hero {
        padding: 120px 0 60px !important;
        background: #fff !important;
    }

    .hero_title {
        font-size: 44px !important;
    }

    .hero_visual_main {
        height: 350px !important;
        border-radius: 20px !important;
    }

    .section_header_flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100% !important;
    }

    .section_title_lg {
        font-size: 36px;
        word-break: keep-all;
    }

    .mw_grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        width: 100% !important;
    }

    .mw_card .img_box {
        aspect-ratio: auto !important;
        height: auto !important;
        border-radius: 10px;
    }

    .mw_card .thumb {
        height: auto !important;
    }

    .mid_banner_container {
        padding: 0
    }

    .mw_footer {
        padding: 60px 0 40px;
    }

    .footer_main {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 40px;
    }

    .footer_info_box {
        width: 100%;
    }

    .info_summary {
        margin-bottom: 15px;
    }

    .info_summary strong {
        font-size: 18px;
    }

    .footer_nav {
        display: none;
        margin-top: 30px;
        padding-top: 30px;
    }

    .footer_menu_wrap {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }

    .info_details {
        gap: 8px;
        font-size: 13px;
    }

    .info_details .v_line {
        display: none;
    }

    .footer_nav {
        padding: 40px 0;
    }

    .footer_menu_wrap {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }

    .f_menu_col {
        gap: 15px;
    }

    .f_sub_link {
        font-size: 13px;
    }

    .footer_bottom {
        padding-top: 30px;
    }

    .mw_side_banner {
        display: block;
        width: 190px;
        bottom: 20px;
        right: 10px;
    }

    .side_top {
        margin: 10px;
        padding: 12px;
    }

    .side_cs,
    .side_menu a,
    .side_bank {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* 480px Breakpoint (Small Phone) */
@media screen and (max-width: 480px) {
    .mw_container {
        padding: 0 20px !important;
    }

    .hero_title {
        font-size: 36px !important;
    }

    .hero_visual_main {
        height: 280px !important;
    }

    .hero_btns {
        flex-direction: column;
        width: 100% !important;
        gap: 10px;
    }

    .hero_btns a {
        width: 100% !important;
        justify-content: center;
        padding: 15px !important;
    }

    .mw_discovery_swiper {
        height: initial;
        padding: 20px 45px !important;
    }

    .discovery_item {
        padding: 25px !important;
        min-height: 180px !important;
    }

    .discovery_item h4 {
        font-size: 20px !important;
        margin-top: 0;
    }

    .discovery_item.swiper_box .swiper_header {
        padding: 20px 20px 20px 0;
    }

    .mw_showcase_section {
        padding: 0px 0 80px 0;
    }

    .mw_bento {
        grid-template-columns: 1fr;
    }

    .bento_content_stacked {

        border-radius: 20px;
    }

    .bento_title_lg {
        font-size: 30px;
    }

    .bento_large,
    .bento_small {
        min-height: 300px !important;
        padding: 40px 30px !important;
        border-radius: 20px;
    }
}