/*
========================================================================
    [목차]
    1.  메인 슬라이더 (Top Slider)
    2.  제품 라인업 섹션 (Product Lineup)
    3.  파트너 섹션 (Partners)
    4.  카드 슬라이더 (Icon Cards)
    5.  리뷰 슬라이더 (Marquee)
    6.  네이버 플레이스/프로모션 (Store Promo)
    7.  이벤트 배너 (Event Banner)
    8.  로고 쇼케이스 (Client Logos)
    9.  사장님 이야기 (CEO Story)
    10. 퀵 메뉴 (Quick Menu)
    11. 오로라 배너 (Aurora Promo)
    12. 카드 뉴스 (Card News)
    13. 글로벌 배너 (Global Banner)
    14. 반응형 미디어 쿼리 (Responsive)
========================================================================
*/

/*
========================================
 1. 메인 슬라이더 (Top Slider)
========================================
*/
.slider-container {
    position: relative;
    width: 100%;
    max-width: 2496px;
    height: 630px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #e0e0e0;
    user-select: none;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    padding-left: 105px;
    align-items: center;
    justify-content: flex-start;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding-left: 10%;
    color: white;
    max-width: 900px;
}

/* 3. (선택사항) 글씨가 잘 보이게 동영상 위에 검은 막 씌우기 */
.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* 30% 어둡게 */
    z-index: 1; /* 동영상(0)과 텍스트(2) 사이 */
}

.slide-content .category {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: -0.05em;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.slide-content .title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 15px;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    letter-spacing: -0.05em;
}


.slide video {
    position: absolute; /* 둥둥 띄워서 배경으로 만듦 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	object-position: center 10%;
    object-fit: cover; /* 화면 꽉 차게 */
    z-index: 0; /* 제일 뒤쪽 레이어 */
}

.slide-content .description {
    font-size: 2rem;
    margin-bottom: 40px;
    line-height: 1.4;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.03em;
}

.slide-content .buttons {
    display: flex;
    gap: 15px;
}

.slide-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    white-space: nowrap;
}

.slide-content .btn-primary {
    background-color: #0d6efd;
    color: white;
    border: 1px solid #0d6efd;
}

.slide-content .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

.slide-content .btn-secondary {
    background-color: #343a40;
    color: white;
    border: 1px solid #343a40;
}

.slide-content .btn-secondary:hover {
    background-color: #212529;
    border-color: #212529;
}

.nav-btn {
    background-color: white;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.nav-btn svg {
    width: 28px;
    height: 28px;
    fill: #333;
}

.pagination-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.dot.active {
    background-color: white;
    border-color: white;
}


/*
========================================
 2. 제품 라인업 섹션 (Product Lineup)
========================================
*/
.imupos-product-section {
    width: 100%;
    padding: 50px 20px;
    background-color: #F9FAFB;
    box-sizing: border-box;
}

.imupos-section-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.imupos-section-header h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px 0;
    letter-spacing: -0.1rem;
    line-height: 1.2;
}

.imupos-section-header p {
    font-size: 2rem;
    line-height: 3rem;
    color: #6c757d;
    margin: 0;
}

.imupos-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.imupos-product-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.imupos-product-card.span-2 {
    grid-column: span 2;
}

.imupos-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.imupos-card-image {
    order: -1;
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    margin: 0;
    background-color: #eee;
}

.imupos-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.imupos-product-card:hover .imupos-card-image img {
    transform: scale(1.08);
}

.imupos-card-info {
    padding: 20px;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 8px;
}

.imupos-card-info h3 {
    width: 100%;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: -0.05rem;
    padding-left: 10px;
    border-left: 5px solid #2D91FF;
}

.imupos-card-info p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
    background-color: #F1F3F5;
    padding: 5px 10px;
    border-radius: 8px;
    margin: 0;
    white-space: nowrap;
    letter-spacing: -0.02rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.imupos-product-card:hover .imupos-card-info p {
    background-color: #222;
    color: #fff;
}


/*
========================================
 3. 파트너 섹션 (Partners)
========================================
*/
.partner-section {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.partner-container {
    max-width: 1490px;
    margin: 0 auto;
}

.partner-header {
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: center;
}

.partner-header h2 {
    font-size: 4.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
}

.partner-header p {
    font-size: 2rem;
    line-height: 3rem;
    color: #6c757d;
}

.partner-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.partner-card {
    box-sizing: border-box;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.partner-card:hover::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.partner-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-card-category {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 500;
}

.partner-card-name {
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: auto;
    background-color: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 7px 15px;
    border-radius: 4px 4px 0px 0px;
}

.partner-card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    min-height: 20px;
}

.partner-card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
    transition: border-bottom-color 0.3s ease;
    color: white;
    text-decoration: none;
}

.partner-card-link i {
    margin-left: 8px;
    font-size: 0.9em;
    transition: margin-left 0.3s ease;
}

.partner-card-link:hover {
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

.partner-card-link:hover i {
    margin-left: 12px;
}

/* 개별 카드 배경 및 크기 */
.partner-card:nth-child(1) { background-image: url('/img/renewal/Solution_uporder_1.jpg'); width: 480px; height: 330px; }
.partner-card:nth-child(2) { background-image: url('/img/renewal/nfc_img01.jpg'); background-position-y: 15%; width: 480px; height: 330px; }
.partner-card:nth-child(3) { background-image: url('/img/renewal/Solution_KDS_1.jpg'); width: 480px; height: 330px; }
.partner-card:nth-child(4) { background-image: url('/img/renewal/Solution_didpro_1.jpg'); width: 480px; height: 330px; }
.partner-card:nth-child(5) { background-image: url('/img/renewal/Solution_wating_1.jpg'); width: 480px; height: 330px; }
.partner-card:nth-child(6) { background-image: url('/img/renewal/upcoupon_img01.jpg'); width: 480px; height: 330px; }


/*
========================================
 4. 카드 슬라이더 (Icon Cards)
========================================
*/
.card-slider-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.card-slider-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.card-slider-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-slider-header h2 {
    font-size: 4.2rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-slider-header p {
    font-size: 2rem;
    line-height: 3rem;
    color: #666;
}

.card-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.card {
    flex: 0 0 390px;
    height: 390px;
    margin: 0 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #555;
}

.slider-controls {
    text-align: center;
    margin-top: 30px;
}

.slider-controls .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider-controls .dot.active {
    background-color: #007bff;
}

/* "더 많은 설치사례" 배너 */
.more-cases-banner {
    max-width: 270px;
    margin: 0 auto 20px auto;
    padding: 20px 30px;
    background-color: #e7e9ec;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.more-cases-banner .banner-text {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 500;
    color: #333;
}

.more-cases-banner .banner-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    font-size: 2rem;
}

.more-cases-banner .banner-link i {
    margin-left: 5px;
}


/*
========================================
 5. 리뷰 슬라이더 (Marquee)
========================================
*/
.review-section {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

.slider-viewport {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.review-slider-container {
    display: flex;
    animation: slideLeft 30s linear infinite;
}

.review-slider-container:hover {
    animation-play-state: paused;
}

.review-card {
    margin: 30px 16px 20px 0;
    flex-shrink: 0;
    width: 354px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1440px); }
}

.stars {
    color: #fdd835;
    font-size: 20px;
    letter-spacing: 2px;
}

.user-id {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.review-card p {
    font-size: 17px;
    color: #333;
    margin-top: 12px;
    font-weight: 500;
    line-height: 1.5;
}


/*
========================================
 6. 네이버 플레이스/프로모션 (Store Promo)
========================================
*/
.store-promo-container {
    width: 100%;
    max-width: 1490px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.store-promo-header {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 30px;
}

.store-promo-header-title-green {
    font-size: 4rem;
    font-weight: 800;
    color: #20C997;
    margin: 0;
    line-height: 1.3;
}

.store-promo-header-title-black {
    font-size: 4.2rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

.store-promo-card-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.store-promo-card {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    text-align: center;
    box-sizing: border-box;
}

.store-promo-card-label {
    font-size: 2.2rem;
    font-weight: 700;
    border-radius: 14px;
    padding: 15px 23px;
    margin-bottom: 24px;
    display: inline-block;
}

.store-promo-label-blue { background: linear-gradient(90deg, #3B82F6, #60A5FA); color: white; }
.store-promo-label-purple { background: linear-gradient(90deg, #8B5CF6, #A78BFA); color: white; }
.store-promo-label-gray { background-color: #E5E7EB; color: #374151; }

.store-promo-card-image-box {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E0E0E0;
    min-height: 450px;
    padding: 24px 24px 0 24px;
    box-sizing: border-box;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

/* 첫 번째 카드 스타일 오버라이드 */
.store-promo-card:first-of-type .store-promo-card-image-box {
    background: linear-gradient(#0a9a45, #92d050);
    border: none;
}

/* 마지막 카드 스타일 오버라이드 */
.store-promo-card:last-of-type .store-promo-card-image-box {
    background: linear-gradient(#0E4D90, #07305C);
    border: none;
}

.store-promo-card:last-of-type .store-promo-card-image-box p { color: #ffffff; }
.store-promo-card-image-box h3 { font-size: 2.7rem; font-weight: 600; margin-bottom: 10px; }
.store-promo-card-image-box .h3_hw { color: #ffffff; }
.store-promo-card-image-box .h3_pu { color: #A07FF9; }

.store-promo-card-image-box img {
    width: auto;
    height: auto;
    display: block;
    border-radius: 12px;
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    align-self: center;
}

/* 첫 번째 카드 이미지 스타일 */
.store-promo-card:first-of-type .store-promo-card-image-box img {
    max-width: 85%;
    background-color: transparent;
    border-radius: 20px;
}

.store-promo-card-caption {
    font-size: 2rem;
    font-weight: 500;
    color: #444;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.store-promo-card:first-of-type .store-promo-card-caption {
    color: #FFFFFF;
}


/*
========================================
 7. 이벤트 배너 (Event Banner)
========================================
*/
.banner-section {
    background-color: #e8f4fc !important;
    padding: 20px;
    overflow: hidden;
    margin-top: 50px;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

.banner-left {
    flex: 1;
    z-index: 2;
    position: relative;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.banner-title span { display: block; }

.banner-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
    position: relative;
}

.banner-details { margin-bottom: 15px; }

.detail-item {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 5px 0;
    text-align: left;
    font-size: 1.8rem;
    color: #444;
    font-weight: 500;
}

.banner-button {
    display: inline-block;
    background-color: #2D91FF;
    color: #FFFFFF !important;
    font-size: 2rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.banner-button:hover {
    background-color: #2277d5;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.character-image {
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 320px;
    width: auto;
    z-index: 1;
}

.star-icon {
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 40px;
    animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}


/*
========================================
 8. 로고 쇼케이스 (Client Logos)
========================================
*/
.client-logo-section {
    width: 100%;
    background-color: #fff;
    padding: 30px 0;
}

.logo-showcase-container {
    width: 100%;
    max-width: 1490px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.logo-showcase-container::before,
.logo-showcase-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-showcase-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.logo-showcase-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.logo-row {
    display: flex;
    width: max-content;
    animation: scrollLoop 40s linear infinite;
}

.logo-row img {
    height: 50px;
    margin-top: 30px;
    width: auto;
    margin-right: 60px;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-row img:hover { transform: scale(1.1); }

@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/*
========================================
 9. 사장님 이야기 (CEO Story)
========================================
*/
.ceo-story-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.ceo-story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ceo-story-title {
    font-size: 4.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 50px;
    letter-spacing: -0.05em;
}

.ceo-story-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ceo-story-card {
    width: calc(50% - 15px);
    max-width: 585px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ceo-story-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.ceo-story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
    box-sizing: border-box;
    z-index: 1;
}

.ceo-story-quote {
    color: white;
    font-size: 2.5rem;
    font-weight: 100;
    line-height: 1.4;
    text-align: left;
    letter-spacing: -0.02em;
}

.ceo-story-name {
    position: absolute;
    bottom: 20px;
    left: 25px;
    color: white;
    font-size: 3rem;
    font-weight: 600;
    text-align: left;
    z-index: 2;
}

/* 팝업 스타일 */
.video-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.video-popup-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-popup iframe { width: 100%; height: 100%; }

.video-close {
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.video-close::before { content: '×'; line-height: 1; }


/*
========================================
 10. 퀵 메뉴 (Quick Menu)
========================================
*/
.quick-menu-container {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 999;
}

.quick-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0d6efd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-menu-button svg {
    fill: #007bff;
    margin-bottom: 5px;
}

.quick-menu-button span { display: block; }

.quick-menu-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.quick-menu-button.top-button {
    background-color: #0d6efd;
    color: #ffffff;
}

.quick-menu-button.top-button svg {
    fill: #FFFFFF !important;
}


/*
========================================
 11. 오로라 배너 (Aurora Promo - 251222)
========================================
*/
.promo-section {
    width: 100%;
    margin-top: 80px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.promo-container {
    width: 100%;
    max-width: 1490px;
    background: linear-gradient( -45deg, #A1C4FD, #C2E9FB, #e0c3fc, #90f7ec );
    background-size: 400% 400%;
    animation: auroraWave 7s ease infinite;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(161, 196, 253, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 100px;
    position: relative;
    overflow: hidden;
}

@keyframes auroraWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
    filter: blur(60px);
    animation: floatShape 6s infinite alternate;
}

.circle1 {
    width: 300px; height: 300px;
    background: rgba(255, 255, 255, 0.4);
    top: -50px; left: -50px;
}

.circle2 {
    width: 250px; height: 250px;
    background: rgba(144, 247, 236, 0.3);
    bottom: -30px; right: 20%;
    animation-delay: -3s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 40px) scale(1.1); }
}

.sparkle {
    position: absolute;
    background: radial-gradient(circle, #ffffff 20%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.4); filter: drop-shadow(0 0 8px rgba(255,255,255,0.8)); }
    100% { opacity: 0; transform: scale(0.3); }
}

/* Sparkle Positions */
.s1 { top: 15%; left: 10%; width: 20px; height: 20px; animation-duration: 4s; animation-delay: 0s; }
.s2 { bottom: 20%; left: 5%; width: 12px; height: 12px; animation-duration: 3s; animation-delay: 1.5s; }
.s3 { top: 10%; right: 15%; width: 25px; height: 25px; animation-duration: 5s; animation-delay: 0.5s; }
.s4 { bottom: 15%; right: 30%; width: 15px; height: 15px; animation-duration: 3.5s; animation-delay: 2s; }
.s5 { top: 30%; left: 45%; width: 18px; height: 18px; animation-duration: 2.5s; animation-delay: 1s; }
.s6 { top: 20%; right: 40%; width: 10px; height: 10px; animation-duration: 2s; animation-delay: 0.2s; }
.s7 { bottom: 10%; left: 35%; width: 14px; height: 14px; animation-duration: 4.5s; animation-delay: 3s; }
.s8 { top: 5%; right: 5%; width: 8px; height: 8px; animation-duration: 3s; animation-delay: 1.2s; }

.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 5;
}

.badge-new {
    display: inline-block;
    background: linear-gradient(90deg, #FF6B6B, #FF8E53);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    padding: 3px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    animation: bounce 2s infinite;
    margin-bottom: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

.promo-title { margin: 0; line-height: 1.1; }

.txt-sub {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFD54F;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1), 0 0 20px rgba(255, 213, 79, 0.5);
    display: block;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.txt-main {
    font-size: 5.2rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 5px 15px rgba(33, 64, 114, 0.3), 0 2px 4px rgba(33, 64, 114, 0.6);
    display: block;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 2rem;
    color: #4a5b6c;
    line-height: 1.6;
    margin: 0;
}

.txt-highlight {
    background-color: #fff;
    color: #2D91FF;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.promo-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #2D91FF 0%, #1E88E5 100%);
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 400;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(45, 145, 255, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.promo-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(90deg, #40A0FF 0%, #29B6F6 100%);
    box-shadow: 0 10px 30px rgba(45, 145, 255, 0.7);
}

.promo-button::after {
    content: "";
    position: absolute;
    top: 0; left: -150%;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shineBtn 3s infinite;
    pointer-events: none;
}

@keyframes shineBtn {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.promo-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 5;
    animation: floatImage 3s ease-in-out infinite alternate;
}

.promo-image {
    max-width: 100%;
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}


/*
========================================
 12. 카드 뉴스 (Card News - 2025-12-18)
========================================
*/
.news-section-wrap {
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
    overflow: hidden;
}

.news-grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.news-grid-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
}

.news-grid-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f4f4f4;
    transition: transform 0.3s ease;
}

/* PC: 첫 번째 게시물 크게 보기 (2x2) */
.news-grid-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    z-index: 1;
}

.news-grid-item:hover {
    transform: scale(0.98);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.news-grid-item a { display: block; width: 100%; height: 100%; }

.news-grid-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform 0.5s ease;
}

.news-grid-item:hover img { transform: scale(1.05); }


/*
========================================
 13. 글로벌 배너 (Global Banner)
========================================
*/
.full-bleed-banner {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.banner-text-wrap .fw-title {
    font-size: 4.2rem;
    font-weight: 800;
    margin: 0 0 25px 0;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    word-break: keep-all;
}

.banner-text-wrap .fw-desc {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    color: #f1f1f1;
    font-weight: 400;
    word-break: keep-all;
}

.fw-highlight {
    color: #FFD700;
    font-weight: 700;
}

.fw-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(to bottom, #FFD700, #FFC107);
    color: #000000 !important;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
    border: 3px solid #fff;
}

.fw-btn:hover {
    background: #ffffff;
    color: #000000 !important;
    border-color: #FFD700;
    transform: translateY(-7px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7);
}


/*
========================================================================
 14. 반응형 미디어 쿼리 (Responsive Media Queries)
========================================================================
*/

/* 1200px 이하 */
@media (max-width: 1200px) {
    .slide { padding-left: 0; }
    .slider-container { height: 500px; }
    .slide-content { padding-left: 8%; }
    .slide-content .title { font-size: 3.5rem; }
    .slide-content .description { font-size: 1.3rem; margin-bottom: 30px; }
    .slide-content .btn { padding: 14px 25px; }
    .prev-btn { left: 20px; }
    .next-btn { right: 20px; }
    
    .promo-container { margin-left: 25px; }
    
    .imupos-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .imupos-product-card.span-2 {
        grid-column: span 2;
    }
}

/* 900px 이하 */
@media (max-width: 900px) {
    /* 이벤트 배너 */
    .banner-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .banner-left { margin-bottom: 24px; }
    .banner-right { align-items: center; }
    .character-image { display: none; }
    
    /* 오로라 프로모션 배너 */
    .promo-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        height: auto;
        margin-left: 0px;
    }
    .promo-section { margin-top:0; padding: 0 25px; }

    .promo-content {
        align-items: center;
        width: 100%;
        margin-bottom: 40px;
    }
    .txt-sub { font-size: 2rem; margin-bottom: 0; }
    .txt-main {
        font-size: 4.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .promo-content p {
        font-size: 2rem;
        word-break: keep-all;
    }
    .promo-button {
        width: 70%;
        max-width: 280px;
        font-size: 2rem;
        padding: 15px 30px;
        margin-top: 20px;
    }
    .promo-image-wrapper {
        justify-content: center;
        width: 100%;
    }
    .promo-image {
        width: 80%;
        max-width: 380px;
        margin-top: 10px;
    }
    .circle1 { width: 120px; height: 120px; left: -20px; top: -20px; }
    .circle2 { width: 100px; height: 100px; bottom: 10px; right: -10px; }
}

/* 768px 이하 */
@media (max-width: 768px) {
    /* 메인 슬라이더 */
    .slider-container { height: 400px; }
    .slide-content { padding-left: 5%; max-width: 90%; margin-top: 20px; }
    .slide-content .category { font-size: 1.5; margin-bottom: 5px; }
    .slide-content .title { font-size: 2.5rem; margin-bottom: 10px; }
    .slide-content .description { font-size: 2rem; margin-bottom: 20px; }
    .slide-content .buttons { flex-direction: column; gap: 10px; }
    .slide-content .btn { padding: 12px 20px; }
    .nav-btn { width: 40px; height: 40px; font-size: 1.5rem; }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    .pagination-dots { bottom: 15px; gap: 8px; }
    .dot { width: 10px; height: 10px; }

    /* 제품 라인업 */
    .imupos-product-section { padding: 50px 15px; }
    .imupos-section-header { margin-top: 0px; }
    .imupos-section-header h2 { margin-top: 0; }
    .imupos-product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .imupos-product-card.span-2 { grid-column: span 1; }
    .imupos-card-image { height: 200px; }
    .imupos-card-info h3 { font-size: 2.2rem; }

    /* 파트너 섹션 */
    .partner-header { margin-top: 20px; }
    .partner-card {
        width: calc(50% - 10px);
        padding: 20px;
        height: 220px !important;
    }
    .partner-card-name { font-size: 1.2rem; }
    .partner-card-description { font-size: 0.9rem; }
    .partner-card-link { font-size: 0.95rem; }

    /* 이벤트 배너 */
    .star-icon {
        right: 80px;
        top: 0;
        display: none;
        font-size: 20px;
        left: auto;
    }
    .detail-item { font-size: 2rem; line-height: 3rem; }
    .banner-button { font-size: 2.2rem; }

    /* 로고 쇼케이스 */
    .logo-showcase-container { padding: 24px 16px; }
    .logo-row { gap: 20px 15px; }
    .logo-row img { max-height: 35px; max-width: 120px; }

    /* 사장님 이야기 */
    .ceo-story-section { padding-left: 15px; }
    .ceo-story-title { margin-bottom: 30px; }
    .ceo-story-grid { gap: 20px; }
    .ceo-story-overlay { padding: 10px; text-align: left; }
    .ceo-story-card { height: auto; max-width: 450px; }
    .ceo-story-image { height: 250px; }
    .ceo-story-name { font-size: 3rem; bottom: 15px; left: 20px; }
    .ceo-story-quote { font-size: 2rem; text-align: left; letter-spacing: -0.2rem; }

    /* 퀵메뉴 */
    .quick-menu-container { right: 15px; }
    .quick-menu-list { gap: 10px; }
    .quick-menu-button {
        width: 50px;
        height: 50px;
        font-size: 11px;
        padding: 0;
        min-height: auto;
    }
    .quick-menu-button svg { display: none !important; }
    .quick-menu-button.top-button svg {
        display: block !important;
        width: 24px;
        height: 24px;
        margin: 0;
    }
    .quick-menu-button.top-button span { display: none; }

    /* 스토어 프로모션 */
    .store-promo-container { padding: 0 20px; }
    .store-promo-header { margin-top: 50px; margin-bottom: 20px; }
    .store-promo-header-title-green, .store-promo-header-title-black { font-size: 4.2rem; }
    .store-promo-card-wrapper { flex-direction: column; gap: 24px; margin-bottom: 30px; }
    .store-promo-card { max-width: 100%; padding: 20px; }
    .store-promo-card-label { font-size: 2.2rem; padding: 12px 20px; }
    .store-promo-card-image-box { min-height: 300px; padding: 20px; }
    .store-promo-card-caption { font-size: 2rem; }

    /* 카드 뉴스 */
    .news-grid-container { padding-left: 20px; }
    .news-grid-list {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        padding: 0 20px 30px 20px;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .news-grid-list::-webkit-scrollbar { display: none; }
    .news-grid-item {
        flex: 0 0 85%;
        max-width: 320px;
        height: 320px;
        scroll-snap-align: start;
    }
    .news-grid-item:nth-child(1) {
        grid-column: auto;
        grid-row: auto;
    }
}

/* 576px 이하 */
@media (max-width: 576px) {
    .banner-right { flex-direction: column-reverse; }
    .banner-button { margin-bottom: 10px; }
    .imupos-card-info h3 { font-size: 2.8rem; margin-bottom: 5px; }
    .imupos-card-info p { font-size: 2rem; }
    
    /* 파트너 섹션 */
    .partner-card {
        width: 100%;
        padding: 15px;
    }
    .partner-card-name { font-size: 2rem; }
    .partner-card-description { font-size: 0.85rem; }
    .partner-card-link { font-size: 0.9rem; }
    
    /* 프로모션 이미지 */
    .promo-image-wrapper {
        width: 100%;
        max-width: 500px;
        padding-top: 0;
    }
}

/* 480px 이하 */
@media (max-width: 480px) {
    /* 메인 슬라이더 */
    .slide { padding-left: 0; align-items: flex-end; padding-bottom: 10px; }
    .slider-container { height: 300px; }
    .slide-content .title { font-size: 4rem; }
    .slide-content .description { font-size: 0.85rem; margin-bottom: 15px; display: none; }
    .slide-content .btn { padding: 10px 15px; width: 120px; }
    .nav-btn { display: none; }
	
	

.more-cases-banner {width:235px}

    /* 사장님 이야기 */
    .ceo-story-title { margin-bottom: 25px; }
    .ceo-story-overlay { padding: 15px; }
    .ceo-story-card { padding: 0; }
    .ceo-story-image { height: 200px; }
    .ceo-story-quote { font-size: 1.8rem; text-align: left; letter-spacing: -0.1rem; }
    .ceo-story-name { font-size: 3rem; bottom: 10px; left: 15px; }
}