/* 기본 스타일 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme-accent: #4361ee;
    --theme-accent-hover: #3651de;
    --theme-text: #333;
    --theme-gray: #666;
    --theme-light-gray: #f8f9fa;
    --theme-border: #efefef;
}

body {
    font-family: "PT Serif", "Noto Sans KR", sans-serif;
    color: var(--theme-text);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden; /* 가로 스크롤 방지 */
    margin-top: 0; /* 기본 마진 제거 */
    padding-top: 0; /* 기본 패딩 제거 */
    word-break: keep-all; /* 또는 원하는 다른 값 */
    /* 필요하다면 긴 영어 단어 처리를 위한 속성도 추가 */
    overflow-wrap: break-word; 
}

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

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

.container {

    margin: 0 auto;
    padding: 0 20px;
}




/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.95); /* 기본적으로 흰색 고정 */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 메인 페이지에서만 투명 헤더 */
body:has(.main-slider) .header {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* 메인 페이지에서 스크롤 시에도 투명 유지 */
body:has(.main-slider) .header.scrolled {
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(0px);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

.header:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* 메인 페이지에서 호버 시 하얀 배경 */
body:has(.main-slider) .header:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 더 강력한 선택자로 강제 적용 */
header#header.header.scrolled,
.header.scrolled,
header.header.scrolled,
#header.header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
}

.header-container {
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;     
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#site-logo a {
    font-size: 24px;
    font-weight: bold;
    color: var(--theme-accent);
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    z-index: 1001;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex;
    height: 40px;
    padding: 10px 12px;
    background: none;
    border: 1px solid #E7E7E7;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--Foundation-Grey-G100, #8C8C8C);
    font-family: "Noto Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s ease;

}

.language-toggle:hover {
    border-color: var(--theme-accent);
    background: rgba(67, 97, 238, 0.05);
}

.language-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-toggle i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 4px 0;
    margin: 4px 0 0 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 8px 16px;
    color: var(--Foundation-Grey-G100, #8C8C8C);
    font-family: "Noto Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background: rgba(67, 97, 238, 0.05);
}

.language-option.active {
    background: rgba(67, 97, 238, 0.1);
    color: var(--theme-accent);
    font-weight: 500;
}


.language-selector {
    display: none !important;
}



.logo-image {
    height: 36px;
    width: auto;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--theme-text);
    margin: 3px 0;
    transition: all 0.3s;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* 데스크탑에서는 모바일 메뉴 종료 버튼 숨기기 */
.main-nav .close-menu-btn {
    display: none;
}

/* 모바일에서는 종료 버튼 표시 */
@media (max-width: 768px) {
    .main-nav .close-menu-btn {
        display: flex !important;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    padding: 10px 0;
    color: var(--theme-text);
    text-transform: uppercase;
    font-size: 18px; /* 또는 원하는 크기 */
    color: #000;
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.menu-item > a:hover {
    color: var(--theme-accent);
}

/* Sub Menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: transparent;
    
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    border-bottom: 1px solid var(--theme-border);
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--theme-text);
}

.sub-menu a:hover {
    background: var(--theme-light-gray);
    color: var(--theme-accent);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 20px;
    color: var(--theme-text);
}

.social-links a:hover {
    color: var(--theme-accent);
}

/* Main Slider */
.main-slider {
    position: relative;
    height: 910px; /* 720px + 20% = 864px */
    overflow: hidden;
    margin-top: 0px;
    width: 100%;
    margin-left: 0;
}

/* Main Slider 2 */
.main-slider2 {
    position: relative;
    height: 910px; /* 720px + 20% = 864px */
    overflow: hidden;
    margin-top: 0px;
    width: 100%;
    margin-left: 0;
}

.main-slider2 .slide-bg {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* 데스크탑에서만 main-slider2 세로 100% 설정 */


/* Main Slider 2 텍스트 스타일 */
.slider2-text {
    position: absolute;
    top: 50%;
    left: 150px;
    transform: translateY(-50%);
    z-index: 10;
    text-align: left;
    width: auto;
    max-width: 800px;
    padding: 0;
}


.slider2-text-1 {
    color: #FFF;
    font-family: "Noto Sans KR";
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 75px */
    letter-spacing: -2px;
    margin: 0 0 40px 0;
}

.slider2-text-2 {
    color: #FFF;
    font-family: "Noto Sans KR";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
    letter-spacing: -1.28px;
    margin: 0;
}

/* Main Slider 2 애니메이션 */
.slider2-text .slide-text-animated {
    overflow: hidden;
}

.slider2-text .slide-line {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

/* Main Slider 2에서만 애니메이션 실행 - JavaScript로 제어 */
.main-slider2 .slide-line {
    /* 초기에는 애니메이션 없음 - JavaScript로 제어 */
    animation: none;
}

.main-slider2 .slide-line[data-delay="0"] {
    animation-delay: 0s;
}

.main-slider2 .slide-line[data-delay="0.3"] {
    animation-delay: 0.3s;
}

.main-slider2 .slide-line[data-delay="0.6"] {
    animation-delay: 0.6s;
}

.main-slider2 .slide-line[data-delay="0.9"] {
    animation-delay: 0.9s;
}

@keyframes slideUpFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    60% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 번쩍이는 오버레이 애니메이션 
.flash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    animation: flashEffect 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes flashEffect {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    20% {
        opacity: 0.95;
        transform: scale(1.02);
    }
    40% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    60% {
        opacity: 0.5;
        transform: scale(1.08);
    }
    80% {
        opacity: 0.2;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}*/

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease-in-out;
}

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

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: auto 910px;
    background-position: center;
    background-repeat: no-repeat;
}

/* 첫 번째 슬라이드 배경 이미지 스타일 */
.slide[data-index="0"] .slide-bg,
.slide[data-index="1"] .slide-bg,
.slide[data-index="2"] .slide-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-text {
    position: absolute;
    top: 50%;
    left: 150px; /* 왼쪽에서 +150px */
    right: 50px;
    transform: translateY(-50%); /* Y축만 중앙 정렬 */
    z-index: 2;
    text-align: left; /* 왼쪽 정렬로 변경 */
}

.video-text h1 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 44pt;
    font-weight: 900;
    line-height: 60pt;
    letter-spacing: -1.5pt;
    color: #FFFFFF;
    margin: 0;
    
}

/* 슬라이드 2 텍스트 스타일 */
.slide2-text {
    position: absolute;
    top: 50%;
    left: 150px; /* x축 +150px */
    transform: translateY(-50%); /* Y축 중앙 정렬 */
    z-index: 2;
}

.slide2-text-1 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 24pt;
    font-weight: bold;
    line-height: 50pt;
    letter-spacing: 0pt;
    color: #FF5151;
    margin: 0 0 10px 0;
}

.slide2-text-2 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 44pt;
    line-height: 60pt;
    letter-spacing: -1pt;
    color: #000000;
    margin: 0 0 20px 0;
}

.slide2-text-2 .light-text {
    font-weight: 300; /* light */
}

.slide2-text-2 .bold-text {
    font-weight: bold; /* bold */
}

.slide2-text-3 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 20pt;
    font-weight: 400;
    line-height: 32pt;
    letter-spacing: -0.4pt;
    color: #000000;
    margin: 0;
}

/* 슬라이드 3 텍스트 스타일 */
.slide3-text {
    position: absolute;
    top: 50%;
    left: 150px; /* x축 +150px */
    right: 50px;
    transform: translateY(-50%); /* Y축 중앙 정렬 */
    z-index: 2;
}

.slide3-text-1 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 24pt;
    font-weight: bold;
    line-height: 50pt;
    letter-spacing: 0pt;
    color: #D7142B;
    margin: 0 0 10px 0;
}

.slide3-text-2 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 44pt;
    line-height: 60pt;
    letter-spacing: -1pt;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.slide3-text-2 .light-text {
    font-weight: 300; /* light */
}

.slide3-text-2 .bold-text {
    font-weight: bold; /* bold */
}

.slide3-text-3 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 20pt;
    font-weight: 400;
    line-height: 32pt;
    letter-spacing: -0.4pt;
    color: #FFFFFF;
    margin: 0;
}

/* 오버레이 효과 제거 */
/* .slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
} */

.slide:nth-child(1) .slide-bg {
    background-image: none;
}

.slide:nth-child(2) .slide-bg,
.slide:nth-child(3) .slide-bg {
    position: relative;
    overflow: hidden;
}

/* 슬라이드 클릭 가능 */
.slide[data-index="1"] .slide-bg,
.slide[data-index="2"] .slide-bg {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.slide[data-index="1"] .slide-bg:hover,
.slide[data-index="2"] .slide-bg:hover {
    opacity: 0.9;
}

.slide-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    z-index: 2;
}

.slide-content.center {
    align-items: center;
    text-align: center;
}

.slide-content.right {
    align-items: flex-end;
    text-align: right;
}

.slide-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: slideUp 1s ease-out;
}

.slide-excerpt {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    animation: slideUp 1s ease-out 0.3s both;
}

.slide-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    animation: slideUp 1s ease-out 0.6s both;
}

.slide-button:hover {
    background: #fff;
    color: var(--theme-accent);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Buttons */
.slider-buttons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-btn {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn.active {
    background: #fff;
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    color: #fff;
    outline: none !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: "PT Serif", "Noto Sans KR", sans-serif !important;
    margin: 0;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    font-size: 2em !important;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: all;
}

.slider-arrow.prev {
    left: 1%;
}

.slider-arrow.next {
    right: 1%;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Brand Story Section */
.brand-story {
    padding: 170px 0 100px 0; /* 위쪽 170px, 아래쪽 100px */
    background: #fff;
}

.brand-story .section-header {
    margin: 40px 0;
}

/* Brand Story Text Overlay */
.banner-image {
    position: relative;
}

.brand-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

/* Brand Text Titles */
.brand-text-title-1,
.brand-text-title-2,
.brand-text-title-3 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 32pt;
    font-weight: bold;
    letter-spacing: 1pt;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.brand-text-subtitle-1,
.brand-text-subtitle-2,
.brand-text-subtitle-3 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 16pt;
    font-weight: bold;
    letter-spacing: 1pt;
    color: #ffffff;
    margin: 0 0 40px 0;
}

.brand-text-description-1,
.brand-text-description-2,
.brand-text-description-3 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 10pt;
    font-weight: 400;
    line-height: 34pt;
    letter-spacing: 0pt;
    color: #ffffff;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header h1 em {
    color: var(--theme-accent);
    font-style: normal;
}

.section-header h5,
.section-header p {
    font-size: 16px;
    color: var(--theme-gray);
}

/* Banner Grid */
.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px; /* 카드 간격 60px */
    padding: 0 240px; /* 좌우 마진 240px */
}

.banner-item {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.8s ease-out;
    margin: 0;
    padding: 0;
    opacity: 1;
    transform: translateY(0);
}

/* 가운데 카드 초기 위치 (100px 위) */
.banner-item:nth-child(2) {
    transform: translateY(-100px);
}

/* 스크롤 애니메이션을 위한 클래스 */
.banner-item.aligned {
    transform: translateY(0);
}

.banner-item:nth-child(2).aligned {
    transform: translateY(0);
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(150px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-item:hover {
    transform: none;
    box-shadow: none;
}

.banner-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-gray);
    font-size: 14px;
}

.banner-content {
    padding: 25px;
    text-align: center;
}

.banner-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--theme-accent);
}

.banner-content p {
    font-size: 14px;
    color: var(--theme-gray);
}

/* Product List Section - Light Theme */
.product-list-section {
    padding: 0;
    position: relative;
}

.product-list-section .container {
    position: relative;
    z-index: 1;
    padding: 0;
}

.product-list-section .section-header h1 {
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 20px;
}

.product-list-section .section-header p {
    color: #666666;
    margin-bottom: 48px;
}

/* Product Card */
.product-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 900px; /* 이미지 전체가 보이도록 더 큰 크기 */
    margin-bottom: 0;
}

.card-background {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 900px; /* 이미지 전체가 보이도록 더 큰 크기 */
}

.card-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out;
}

.card-background .default-bg {
    z-index: 1;
}

.card-background .left-hover-bg,
.card-background .right-hover-bg {
    z-index: 2;
    opacity: 0;
}

/* Hover Overlays */
.hover-overlays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.red-overlay,
.blue-overlay {
    position: absolute;
    top: -100%;
    width: 50%;
    height: 100%;
    transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.red-overlay {
    right: 0;
    background-color: #9B2246;
}

.blue-overlay {
    left: 0;
    background-color: #00358E;
}

/* Product Logos */
.product-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.logo-left,
.logo-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-left {
    left: 0;
}

.logo-right {
    left: 50%;
}


.logo-left img,
.logo-right img {
    max-height: 900px;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease-in-out;
}

.default-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 1;
}

.hover-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
}

/* 호버 로고는 기본적으로 30% 위치에 설정됨 */

/* Hover Texts */
.hover-texts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hover-text-left,
.hover-text-right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 20px)); /* 중앙에서 -20px */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
}

.hover-text-left {
    left: 25%; /* 왼쪽 50% 기준 중앙 */
}

.hover-text-right {
    left: 75%; /* 오른쪽 50% 기준 중앙 */
}

.hover-text-left h2,
.hover-text-right h2 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 22pt; /* 제목 크기 축소 */
    font-weight: bold;
    letter-spacing: 0pt;
    color: #ffffff;
    margin: 0 0 20px 0; /* 텍스트 간격 40px */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hover-text-left p,
.hover-text-right p {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 14pt; /* 설명 크기 축소 */
  
    letter-spacing: 0pt;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hover Areas */
.hover-left,
.hover-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 4;
}

.hover-left {
    left: 0;
}

.hover-right {
    right: 0;
}

/* Left Hover Effect */
.hover-left:hover ~ .card-background .left-hover-bg {
    opacity: 1 !important;
}

.hover-left:hover ~ .hover-overlays .blue-overlay {
    top: 0 !important;
}

.hover-left:hover ~ .product-logos .default-logo {
    opacity: 0 !important;
}

.hover-left:hover ~ .product-logos .logo-left .hover-logo {
    opacity: 1 !important;
}

.hover-left:hover ~ .hover-texts .hover-text-left {
    opacity: 0 !important;
}

/* Right Hover Effect */
.hover-right:hover ~ .card-background .right-hover-bg {
    opacity: 1 !important;
}

.hover-right:hover ~ .hover-overlays .red-overlay {
    top: 0 !important;
}

.hover-right:hover ~ .product-logos .default-logo {
    opacity: 0 !important;
}

.hover-right:hover ~ .product-logos .logo-right .hover-logo {
    opacity: 1 !important;
}

.hover-right:hover ~ .hover-texts .hover-text-right {
    opacity: 0 !important;
}

/* JavaScript controlled classes */
.left-hover-active .left-hover-bg {
    opacity: 1 !important;
}

.left-hover-active .blue-overlay {
    top: 0 !important;
}

.left-hover-active .default-logo {
    opacity: 0 !important;
}

.left-hover-active .logo-left .hover-logo {
    opacity: 1 !important;
}

.left-hover-active .hover-text-left {
    opacity: 0 !important;
}

.right-hover-active .right-hover-bg {
    opacity: 1 !important;
}

.right-hover-active .red-overlay {
    top: 0 !important;
}

.right-hover-active .default-logo {
    opacity: 0 !important;
}

.right-hover-active .logo-right .hover-logo {
    opacity: 1 !important;
}

.right-hover-active .hover-text-right {
    opacity: 0 !important;
}

.list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.6); /* 배경 이미지 위에 어두운 오버레이 */
    pointer-events: none;
    transition: all 0.3s ease;
}

/* 클릭 가능한 영역 */
.list-left-half,
.list-right-half {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.list-left-half {
    left: 0;
}

.list-right-half {
    right: 0;
}

/* 왼쪽 영역 호버 시 왼쪽만 밝아짐 + 흰색 슬라이드 애니메이션 */
.list-left-half:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

/* 왼쪽 영역 호버 시 흰색 슬라이드 애니메이션 */
.list-left-half::after {
    content: 'PDRN 탄력 집중 라인';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    transition: top 0.4s ease;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.list-left-half:hover::after {
    top: 0;
}

/* 오른쪽 영역 호버 시 오른쪽만 밝아짐 + 빨간색 슬라이드 애니메이션 */
.list-right-half:hover::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

/* 오른쪽 영역 호버 시 빨간색 슬라이드 애니메이션 */
.list-right-half::after {
    content: '리쥬부스터 리페어 크림';
    position: absolute;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(239, 68, 68, 0.8);
    transition: top 0.4s ease;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.list-right-half:hover::after {
    top: 0;
}

.list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* 카드(로고 컨테이너) */
.list li {
    position: relative;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: 180px;
    height: 100px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

/* 포커스 가능 & 접근성 */
.list li[tabindex="0"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(96,165,250,.55), 0 0 0 6px rgba(96,165,250,.25);
}

/* 등장 애니메이션 클래스 */
.reveal-in {
    opacity: 1;
    transform: translateY(0);
}

/* 스태거 애니메이션 */
.list li:nth-child(1) { transition-delay: 100ms; }
.list li:nth-child(2) { transition-delay: 200ms; }
.list li:nth-child(3) { transition-delay: 300ms; }
.list li:nth-child(4) { transition-delay: 400ms; }
.list li:nth-child(5) { transition-delay: 500ms; }
.list li:nth-child(6) { transition-delay: 600ms; }

/* hover 효과 */
.list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 카드 안쪽 레이아웃 */
.list .logo_w {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}

.list .p_logo {
    transition: transform 0.3s ease;
}

.list .p_logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(.15) contrast(1.05);
    transition: transform .5s ease, filter .4s ease;
}

/* shine 하이라이트 */
.list li::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.12) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform .9s cubic-bezier(.22,.85,.35,1);
    mix-blend-mode: screen;
}

.list li:hover::after {
    transform: translateX(120%);
}

/* hover 시 로고 강조 */
.list li:hover .p_logo {
    transform: scale(1.05);
}

/* 미세한 idle 플로팅(가벼운 동작감) */
.list li:nth-child(3n) {
    animation: float 8s ease-in-out infinite .4s;
}

.list li:nth-child(3n+1) {
    animation: float 9s ease-in-out infinite 1s;
}

.list li:nth-child(3n+2) {
    animation: float 10s ease-in-out infinite .8s;
}

@keyframes float {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -2px;
    }
}

/* 작은 캡션 */
.list .cap {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 8px;
    letter-spacing: .02em;
}

.list .logo-placeholder {
    max-width: 100%;
    max-height: 50px;
    color: #333333;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.section-more {
    text-align: center;
}

.product-list-section .btn-more {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(.22,.85,.35,1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.product-list-section .btn-more:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

/* Mobile Product Cards - Hidden on Desktop */
.mobile-product-cards {
    display: none;
}

/* Notice & CS Section */
.notice-cs {
    padding: 100px 0;
    background: #fff;
}

.notice-cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.notice-box,
.cs-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.box-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--theme-accent);
}

.box-header h3 {
    font-size: 20px;
    font-weight: bold;
}

.box-header h3 i {
    display: block;
    font-size: 12px;
    color: var(--theme-gray);
    font-style: normal;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Notice List */
.notice-list table {
    width: 100%;
    border-collapse: collapse;
}

.notice-list thead th {
    padding: 10px;
    border-bottom: 1px solid var(--theme-border);
    font-weight: 600;
    text-align: left;
}

.notice-list tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--theme-border);
}

.notice-list tbody tr:last-child td {
    border-bottom: none;
}

.notice-list .title {
    width: 70%;
}

.notice-list .date {
    width: 30%;
    text-align: right;
    color: var(--theme-gray);
    font-size: 14px;
}

.notice-list a:hover {
    color: var(--theme-accent);
}

/* CS Info */
.cs-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--theme-accent);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-item span {
    font-size: 18px;
    font-weight: 500;
}

/* Map Container */
.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-gray);
}

/* Logo Carousel Section */
.logo-carousel-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

/* Statistics Cards */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-card {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(67, 97, 238, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 40px rgba(67, 97, 238, 0.5);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.logo-carousel-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 40px 0;
    border-radius: 20px;
}

.logo-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    /* width is driven by content; avoid magic constants */
    will-change: transform;
    animation-fill-mode: none;
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translateZ(0);
}
.logo-carousel-track.animate {
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Use pixel-based distance for seamless loop */
        transform: translateX(calc(var(--scroll-distance, 0px) * -1));
    }
}

.logo-item {
    flex: 0 0 210px;
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    background: transparent !important;
    transition: opacity 0.3s ease;
    padding: 15px 20px;
}

.logo-item:hover {
    opacity: 0.7;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: transparent !important;
    mix-blend-mode: multiply;
}

.logo-carousel-section .logo-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Pause animation on hover */
@media (hover: hover) and (pointer: fine) {
    .logo-carousel-container:hover .logo-carousel-track {
        animation-play-state: paused;
    }
}

@media (hover: none), (pointer: coarse) {
    .logo-carousel-container:hover .logo-carousel-track {
        animation-play-state: running !important;
    }
}

/* Footer */
.footer {
    background-color: #fff;

    border-top: 1px solid #E7E7E7;
    height: 450px;
}

.footer-container {
    height: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;


}

.footer-logo {
    margin-top: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}
.footer-logo-img {
    height: 60px;
    display: block; /* 또는 display: flex 제거 */
}

/* 데스크탑 SNS 아이콘 */
.desktop-sns-icons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.desktop-sns-icon {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 600px;
    background: transparent;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.desktop-sns-icon:hover {
    transform: translateY(-2px);
}

.desktop-sns-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 모바일에서 푸터 로고 스타일 */
@media (max-width: 768px) {
    /* 모바일에서는 데스크탑 SNS 아이콘 숨기기 */
    .desktop-sns-icons {
        display: none;
    }
    
    .footer-logo-img {
        display: flex;
        width: 144px;
        height: 36px;
        align-items: center;
        object-fit: contain;
    }
    
    /* 모바일에서는 기존 푸터 정보 숨기기 */
    .footer-container .footer-info,
    .footer-container .footer-info-second,
    .footer-container .footer-privacy,
    .footer-container .footer-copyright {
        display: none !important;
    }
    
    /* 모바일 간략 정보 표시 */
    .footer-mobile-simple {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 20px;
        align-items: center;
    }
    
    /* SNS 아이콘 컨테이너 */
    .mobile-sns-icons {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }
    
    /* SNS 아이콘 공통 스타일 */
    .sns-icon {
        display: flex;
        width: 48px;
        height: 48px;
        justify-content: center;
        align-items: center;
        border-radius: 480px;
        background: transparent;
        text-decoration: none;
        transition: transform 0.2s ease;
    }
    
    .sns-icon:hover {
        transform: translateY(-2px);
    }
    
    /* 인스타그램 아이콘 */
    .instagram-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* 유튜브 아이콘 */
    .youtube-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .mobile-simple-row {
        width: 100%;
        text-align: center;
    }
    
    .mobile-simple-title {
        color: var(--Foundation-Grey-G200, #5A5A5A);
        text-align: center;
        font-family: "Noto Sans KR";
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    
    .mobile-simple-content {
        color: var(--Foundation-Grey-G100, #8C8C8C);
        text-align: center;
        font-family: "Noto Sans KR";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    
    .mobile-privacy-link {
        color: var(--Foundation-Grey-G100, #8C8C8C);
        text-align: center;
        font-family: "Noto Sans KR";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: underline;
        cursor: pointer;
    }
    
    .mobile-privacy-link:hover {
        color: #0066cc;
    }
    
    .mobile-copyright {
        color: var(--Foundation-Grey-G100, #8C8C8C);
        text-align: center;
        font-family: "Noto Sans KR";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}

/* 데스크탑에서는 모바일 간략 정보 숨기기 */
@media (min-width: 769px) {
    .footer-mobile-simple {
        display: none;
    }
}


.footer-info {
    margin-top: 60px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-info-second {
    margin-top: 0px; /* 첫 번째 행 밑에 16px */
}

.footer-privacy {
    margin-top: 16px;
    text-align: center;
}

.desktop-privacy-link {
    color: var(--Foundation-Grey-G100, #8C8C8C);
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-privacy-link:hover {
    color: #0066cc;
}

.footer-copyright {
    margin-top: 8px; /* 개인정보처리방침 밑에 8px */
    color: var(--Foundation-Grey-G75, #ADADAD);
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.info-title {
    color: var(--Foundation-Grey-G200, #5A5A5A);
    text-align: center;
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.info-content {
    color: var(--Foundation-Grey-G100, #8C8C8C);
    text-align: center;
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bt_top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.bt_top_left {
    -webkit-text-size-adjust: none;
    --font-color-base: #000;
    --font-color-heading: #000;
    --font-color-primary: #000;
    --font-color-secondary: #ef441f;
    --font-color-warn: #ec2a1d;
    --font-color-success: #0985df;
    font-size: 13px;
    font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
    color: #b3b3b3;
    margin: 0;
    padding: 0;
}

.bt_top_right {
    -webkit-text-size-adjust: none;
    --font-color-base: #000;
    --font-color-heading: #000;
    --font-color-primary: #000;
    --font-color-secondary: #ef441f;
    --font-color-warn: #ec2a1d;
    --font-color-success: #0985df;
    font-size: 13px;
    font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
    color: #b3b3b3;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    margin-left: 50px;
    gap: 80px;
}

.bt_logo {
    -webkit-text-size-adjust: none;
    --font-color-base: #000;
    --font-color-heading: #000;
    --font-color-primary: #000;
    --font-color-secondary: #ef441f;
    --font-color-warn: #ec2a1d;
    --font-color-success: #0985df;
    font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
    color: #b3b3b3;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    font-size: 40px;
    display: flex;
}

.bt_logo img {
    height: 50px;
    width: auto;
}

.bt_title {
    -webkit-text-size-adjust: none;
    --font-color-base: #000;
    --font-color-heading: #000;
    --font-color-primary: #000;
    --font-color-secondary: #ef441f;
    --font-color-warn: #ec2a1d;
    --font-color-success: #0985df;
    font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.bt_info_list {
    -webkit-text-size-adjust: none;
    --font-color-base: #000;
    --font-color-heading: #000;
    --font-color-primary: #000;
    --font-color-secondary: #ef441f;
    --font-color-warn: #ec2a1d;
    --font-color-success: #0985df;
    font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 500px;
    font-size: 13px;
    font-weight: 300;
    color: #aaa;
    line-height: 1.6;
}

.bt_info_list > div {
    margin-bottom: 5px;
    color: #aaa;
    width: 100%;
}

.bt_info_list .field {
    -webkit-text-size-adjust: none;
    --font-color-base: #000;
    --font-color-heading: #000;
    --font-color-primary: #000;
    --font-color-secondary: #ef441f;
    --font-color-warn: #ec2a1d;
    --font-color-success: #0985df;
    font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    font-weight: 600;
    margin-right: 8px;
    min-width: 100px;
    display: inline-block;
}

.bt_info_list .value {
    color: #aaa;
}

.bt_cs_list,
.bt_bank_info,
.bt_address_info {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.bt_txt01,
.bt_txt02 {
    margin-bottom: 8px;
    color: #aaa;
}

.bt_txt01 strong,
.bt_txt02 strong {
    -webkit-text-size-adjust: none;
    --font-color-base: #000;
    --font-color-heading: #000;
    --font-color-primary: #000;
    --font-color-secondary: #ef441f;
    --font-color-warn: #ec2a1d;
    --font-color-success: #0985df;
    font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    font-weight: 600;
    margin-right: 8px;
    min-width: 100px;
    display: inline-block;
}

.bt_txt01 span,
.bt_txt02 span {
    color: #aaa;
}

.pdr10 {
    padding-right: 10px;
}

.bt_bank_info,
.bt_address_info {
    color: #aaa;
}

.bt_bank_info > div,
.bt_address_info > div {
    margin-bottom: 5px;
}

.bt_bank_info .field {
    color: #000;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.bt_bank_info .bank_name {
    -webkit-text-size-adjust: none;
    --font-color-base: #000;
    --font-color-heading: #000;
    --font-color-primary: #000;
    --font-color-secondary: #ef441f;
    --font-color-warn: #ec2a1d;
    --font-color-success: #0985df;
    font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    font-weight: 600;
    margin-right: 10px;
}

.bt_title_sub {
    -webkit-text-size-adjust: none;
    --font-color-base: #000;
    --font-color-heading: #000;
    --font-color-primary: #000;
    --font-color-secondary: #ef441f;
    --font-color-warn: #ec2a1d;
    --font-color-success: #0985df;
    font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 5px;
}

.bt_txt03 {
    color: #aaa;
}

.bt_sns {
    margin-top: 20px;
}

.bt_sns_list {
    display: flex;
    gap: 10px;
}

.bt_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bt_bottom_left {
    flex: 1;
}

.bt_dummy {
    flex: 1;
    text-align: right;
}

.bt_copyright {
    color: #aaa;
    font-size: 11px;
}

.bt_escrow {
    font-size: 11px;
    color: #aaa;
}

.escrow_img img {
    height: 20px;
    margin-right: 5px;
}

/* Floating Contact Form */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.contact-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.4);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(67, 97, 238, 0.6);
}

.contact-form-card {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
}

.contact-form-card.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.contact-form-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.close-form {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.close-form:hover {
    color: #333;
}

.contact-form {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4361ee;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

/* Page Hero */
.page-hero {
    padding: 80px 0 80px;
    margin-top: 0px !important; /* 헤더 높이만큼 마진 추가 */
    text-align: center;
    color: #fff;
    position: relative; /* 위치 속성 추가 */
    z-index: 1; /* 헤더보다 낮은 z-index */
}

/* 회사소개 페이지 전용 스타일 */
body:has(.page-hero) {
    padding-top: 80px !important;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    
    color: #fff;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* Content Section */
.content-section {
    padding: 180px 0 80px 0;
}

.content-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.content-section .section-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.content-section .section-header h2 em {
    color: #4361ee;
    font-style: normal;
}

.content-section .section-header p {
    font-size: 16px;
    color: #666;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.content-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.content-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Info Table */
.info-table {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.info-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    width: 200px;
}

.info-table td {
    color: #666;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

/* Vision & Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vm-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #4361ee;
}

.vm-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.vm-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Product List Wrapper */
.product-list-wrapper {
    margin-top: 200px; /* 파란색 사각형 아래 200px 간격 */
}

.titleArea {
    text-align: center;
    margin-bottom: 40px;
}

.titleArea h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px; /* 15px에서 24px로 변경 */
}

.titleArea h2 em {
    color: #4361ee;
    font-style: normal;
}

.titleArea p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0; /* 기본 마진 제거 */
}

/* 디바이더 */
.divider {
    width: 816px;
    height: 2px;
    background: #E7E7E7;
    margin: 60px auto 150px auto; /* 위쪽 60px, 아래쪽 150px */
}

/* 파란색 직사각형 */
.blue-rectangle {
    max-width: 1520px;
    width: 100%;
    height: 380px;
    flex-shrink: 0;
    background: var(--blue, #00358E);
    margin: 0 auto;
    display: flex;
}

/* 왼쪽 영역 */
.blue-rectangle .left-section {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 44px 40px 40px 40px;
}

.blue-rectangle .text-content {
    text-align: left;
    
}

.blue-rectangle .main-text {
    color: #FFF;
    font-family: "Noto Sans KR";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 80px;
}

.blue-rectangle .sub-text {
    color: #FFF;
    font-family: "Noto Sans KR";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* 오른쪽 영역 */
.blue-rectangle .right-section {
    max-width: 643px;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Foundation-Grey-G50, #E7E7E7);
    color: var(--Foundation-black, #000);
    font-family: "Noto Sans KR";
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.product-count {
    text-align: right;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #1a1a1a;
}

.product-count p {
    font-size: 14px;
    color: #666;
}

.product-count strong {
    color: #4361ee;
    font-weight: 700;
}

/* Product Grid */
.prdList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 30px;
}

.prdList.grid3 {
    grid-template-columns: repeat(3, 1fr);
}

.prdList.grid4 {
    grid-template-columns: repeat(4, 1fr);
}

.prd-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prd-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.prd-item .thumbnail {
    position: relative;
    overflow: hidden;
}

.prd-item .prdImg {
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prd-item .prdImg a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.prd-item .prdImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.prd-item:hover .prdImg img {
    transform: scale(1.05);
}

.prd-item .product-placeholder {
    font-size: 24px;
    font-weight: 700;
    color: #4361ee;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.prd-item .description {
    padding: 25px 20px;
    text-align: center;
}

.prd-item .name {
    display: block;
    margin-bottom: 10px;
}

.prd-item .name a {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.prd-item .name a:hover {
    color: #4361ee;
}

.prd-item .desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-view {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Contact Form Large */
.contact-form-large {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.inquiry-form .form-group {
    margin-bottom: 20px;
}

.inquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #4361ee;
}

.inquiry-form textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.submit-btn-large {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-value {
    font-size: 20px;
    font-weight: 700;
    color: #4361ee;
    margin-bottom: 8px;
}

.contact-desc {
    font-size: 14px;
    color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 120px; /* 태블릿에서는 좌우 마진 120px */
    }
    
    .notice-cs-grid {
        grid-template-columns: 1fr;
    }
    
    .inquiry-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-large {
        padding: 40px 30px;
    }
    
    .list ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {


    /* Mobile Hero Section Background Images */
    .product-hero {
        display: none !important;
    }
    .slide[data-index="1"] .slide-bg {
        background-image: url('/images/mobile_images/메인 슬라이드2_모바일.png') !important;
    }
    
    .slide[data-index="2"] .slide-bg {
        background-image: url('/images/mobile_images/메인 슬라이드3_모바일.png') !important;
    }
    

    
    /* Mobile Product Cards */
    .mobile-product-cards {
        display: block;
        padding: 0;
        margin: 0;
    }
    
    .mobile-product-card {
        position: relative;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }
    
    .mobile-product-card img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .mobile-card-content {
        display: none; /* 모바일에서 텍스트 숨김 */
    }
    
    /* Mobile Logo Animation */
    .mobile-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateY(100px);
        opacity: 0;
        transition: all 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 10;
    }
    
    .mobile-logo img {
        max-width: 200px;
        height: 40px;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }
    
    .mobile-logo.animate {
        transform: translate(-50%, -50%) translateY(0);
        opacity: 1;
    }
    
    /* Mobile Menu Toggle */

    
    .prdList.grid3,
    .prdList.grid4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .prd-item .prdImg {
        height: 200px;
    }
    
    .contact-form-large {
        padding: 30px 20px;
    }
    
    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -160px;
        width: 160px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1002;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 100px 0 0 0;
    }
    /* 햄버거 버튼 스타일 */
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }
    
    .mobile-menu-toggle svg {
        width: 40px;
        height: 40px;
        fill: #FFF;
    }
    
    /* 종료 버튼 */
    /* 종료 버튼 - 모바일에서만 표시 */
    .close-menu-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1003;
    }
    
    .close-menu-btn svg {
        width: 40px;
        height: 40px;
        color: #000;
    }
    
    .menu-item {
        border-bottom: 1px solid #E7E7E7;
        display: flex;
        padding: 20px 0;
        justify-content: center;
        align-items: center;
        gap: 10px;
        align-self: stretch;
    }
    
    .menu-item:last-child {
        border-bottom: none;
    }
    
    .menu-item > a {
        display: block;
        color: var(--Foundation-black, #000);
        font-family: "Noto Sans KR";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    .menu-item.active .sub-menu {
        max-height: 500px;
    }
    
    .sub-menu a {
        padding-left: 40px;
    }
    
    /* 모바일 컨테이너 패딩 제거 */
    .container {
        padding: 0;
    }
    
    /* 모바일 헤더 패딩 조정 */
    .header-container {
        padding: 10px 20px; /* 상하 패딩 추가됨 */
        align-items: flex-start;
    }
    
    /* 모바일 푸터 패딩 조정 */
    .footer-container {
        padding: 0 20px; /* 모바일 모드와 동일하게 */
    }
    
    /* 모바일 고정 너비 조정 */
    .header-container,
    .slide-content {
        max-width: 100%; /* 1200px 제한 해제 */
    }
    
    .sub-menu {
        min-width: auto; /* 200px 제한 해제 */
    }
    
    .stat-card {
        width: 90px; /* 모바일 모드와 동일하게 */
        height: 90px; /* 모바일 모드와 동일하게 */
        padding: 10px; /* 모바일 모드와 동일하게 */
    }
    
    
    .logo-item {
        flex: 0 0 150px; /* 모바일 모드와 동일하게 */
        height: 70px; /* 모바일 모드와 동일하게 */
    }
    
    /* 통계 카드 텍스트 크기 모바일 모드와 동일하게 */
    .stat-number {
        font-size: 21px; /* 모바일 모드와 동일하게 */
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 9px; /* 모바일 모드와 동일하게 */
        line-height: 1.2;
    }
    
    /* 추가 모바일 너비 조정 */
    .contact-panel {
        width: 90%; /* 350px 대신 퍼센트 */
        max-width: 300px; /* 최대 너비 제한 */
    }
    
    .info-table,
    .contact-form-large {
        max-width: 100%; /* 800px 제한 해제 */
    }
    
    .bt_title_sub strong,
    .bt_txt01 strong,
    .bt_txt02 strong {
        min-width: auto; /* 100px 제한 해제 */
    }
    
    .logo-image {
        max-width: 120px; /* 158px에서 줄임 */
    }
    
    /* 모바일에서 스위칭 버튼 숨기기 - 주석처리 */
    /*
    .responsive-switch {
        display: none !important;
    }
    */
    
    /* 모바일 푸터 레이아웃 조정 */
    .bt_top {
        grid-template-columns: 1fr 1fr !important; /* 모바일 모드와 동일하게 2열 */
        gap: 30px; /* 60px에서 줄임 */
    }
    
    .bt_col_1 {
        grid-column: 1 / -1; /* 전체 너비 사용 */
    }
    
    .bt_title {
        font-size: 11.2px; /* 푸터 글씨 크기 축소 */
    }
    
    .bt_info_list {
        font-size: 9.1px;
    }
    
    .bt_cs_list,
    .bt_bank_info {
        font-size: 9.1px;
    }
    
    .bt_txt01 strong,
    .bt_txt02 strong,
    .bt_title_sub strong {
        font-size: 9.8px;
        min-width: auto; /* 고정 너비 해제 */
    }
    
    .bt_title_sub {
        font-size: 9.8px;
    }
    
    .bt_copyright {
        font-size: 9.1px;
    }
    
    .bt_logo img {
        height: 21px; /* 로고 크기 축소 */
    }
    
    /* Slider */
    .main-slider {
        height: 700px; /* 700px로 변경 */
    }

    
    .main-slider2 .slide-bg {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .main-slider2 {
        width: 100%;
        height: 700px; /* 700px로 변경 */
    }
    
    /* 모바일 히어로 슬라이드 배경 이미지 */
    .slide:nth-child(2) .slide-bg {
        background-image: url('/images/mobile_images/메인 슬라이드2_모바일.png');
        background-size: cover;
        background-position: center;
    }
    
    .slide:nth-child(3) .slide-bg {
        background-image: url('/images/mobile_images/메인 슬라이드3_모바일.png');
        background-size: cover;
        background-position: center;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    /* 동영상 텍스트 모바일 스타일 */
    .video-text {
        left: 20px; /* 왼쪽 간격 20px */
        bottom: 120px; /* 하단 간격 120px */
        top: auto; /* top 초기화 */
        transform: none; /* transform 초기화 */
    }
    
    .video-text h1 {
        color: #FFF;
        font-family: "Noto Sans KR";
        font-size: 28px;
        font-style: normal;
        font-weight: 900;
        line-height: 150%; /* 42px */
        letter-spacing: -1.12px;
        margin: 0;
    }
    
    /* 모바일에서 첫 번째 슬라이드 배경 이미지 교체 */
    .slide[data-index="0"] .slide-bg {
        background-image: url('/images/mobile_images/메인 슬라이드1_모바일 1.png') !important;
    }
    
    /* 슬라이드 2 텍스트 모바일 스타일 */
    .slide2-text {
        display: flex;
        flex-direction: column;
        left: 20px; /* 왼쪽 간격 20px */
        gap: 12px !important;
        bottom: 50px; /* 하단 간격 50px */
        top: auto; /* top 초기화 */
        transform: none; /* transform 초기화 */
    }
    
    /* 슬라이드 2 제목 (Clinical Science, Built on Expertise) */
    .slide2-text-1 {
        color: var(--red, #9B2246);
        font-family: "Noto Sans KR";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; /* 21px */
        letter-spacing: -0.56px;
        text-transform: uppercase;
        margin: 0 !important;
    }
    
    /* 슬라이드 2 부제목 (임상 데이터를 기반으로) */
    .slide2-text-2 {
        color: var(--Foundation-black, #000);
        font-family: "Noto Sans KR";
        font-size: 26px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 39px */
        letter-spacing: -1.04px;
        margin: 0 !important;
    }
    
    /* 슬라이드 2 부제목 강조 (정교하게 완성된 피부 과학.) */
    .slide2-text-2 .bold-text {
        font-weight: 700;
    }
    
    /* 슬라이드 2 설명 */
    .slide2-text-3 {
        color: var(--Foundation-black, #000);
        font-family: "Noto Sans KR";
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 22.5px */
        letter-spacing: -0.6px;
        margin: 0 !important;
    }
    
    /* 슬라이드 3 텍스트 모바일 스타일 */
    .slide3-text {
        display: flex;
        width: 360px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        left: 20px; /* 왼쪽 간격 20px */
        bottom: 50px; /* 하단 간격 50px */
        top: auto; /* top 초기화 */
        transform: none; /* transform 초기화 */
    }
    
    /* 슬라이드 3 제목 (From Clinical Expertise to Daily Care) */
    .slide3-text-1 {
        color: var(--red, #9B2246);
        font-family: "Noto Sans KR";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; /* 21px */
        letter-spacing: -0.56px;
        text-transform: uppercase;
        margin: 0;
    }
    
    /* 슬라이드 3 부제목 (전문적인 기술력을,) */
    .slide3-text-2 {
        color: var(--Foundation-white, #FFF);
        font-family: "Noto Sans KR";
        font-size: 26px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 39px */
        letter-spacing: -1.04px;
        margin: 0;
    }
    
    /* 슬라이드 3 부제목 강조 (일상 속 피부 케어로.) */
    .slide3-text-2 .bold-text {
        font-weight: 700;
    }
    
    /* 슬라이드 3 설명 */
    .slide3-text-3 {
        color: var(--Foundation-white, #FFF);
        font-family: "Noto Sans KR";
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 22.5px */
        letter-spacing: -0.6px;
        margin: 0;
    }
    .slider2-text {
    /* 기존 속성 중 유지할 것 */
    display: flex; /* inline-flex 대신 flex 사용 권장 */
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    left: 0px;

    /* 변경 및 추가 */
    position: relative; /* relative로 변경하여 left/bottom 제거 */
    width: auto; /* 내용에 맞춰 자동으로 너비 조정 */
    
    /* 좌우 여백 20px, 상하 여백 0 */
    margin: 0 20px; 
    
    /* 기존의 절대 위치 관련 속성 제거 */
    /* left: 20px !important; */
    /* bottom: 100px !important; */
    /* top: auto; */
    /* transform: none; */
    }
    
    .slider2-text-1 {
        color: #FFF;
        font-family: "Noto Sans KR";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; /* 36px */
        letter-spacing: -0.96px;
        margin: 0;
    }
    
    .slider2-text-2 {
        color: #FFF;
        font-family: "Noto Sans KR";
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 22.5px */
        letter-spacing: -0.6px;
        margin: 0;
    }
    
    /* 모바일에서 메인 슬라이더2 배경 이미지 교체 */
    .main-slider2 .slide-bg {
        background-image: url('/images/mobile_images/메인 2슬라이드1_모바일.png') !important;
    }
    
    .slide-excerpt {
        font-size: 16px;
    }
    
    /* Grid */
    .banner-grid {
        justify-content: center;
        grid-template-columns: 1fr;
        gap: 30px; /* 모바일에서도 카드 간격 30px 유지 */
        padding: 20px 24px; /* 모바일에서는 좌우 패딩 24px */
    }
    
    .banner-item {
        width: 342px;
        height: 380px;
        margin: 0 auto;
        padding: 0;
        border-radius: 12px;
        overflow: hidden;
        /* 모바일에서 애니메이션 완전 제거 */
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .banner-image {
        position: relative;
        width: 342px;
        height: 380px; /* 또는 514px */
        overflow: hidden;
        flex: 1; /* 추가 */
    }
    .banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    /* 모바일에서 애니메이션 제거 */
    .banner-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* 브랜드 스토리 섹션 패딩 */
    .brand-story {
        padding: 20px 0; /* 모바일에서 위아래 20px 패딩 */
    }

    
    .brand-story .section-header {
        margin: 40px 0; /* 모바일에서도 상하단 마진 40 */
    }
    
    /* Product Card Mobile */
    .product-card {
        min-height: 600px; /* 모바일에서도 이미지 전체가 보이도록 */
    }
    
    .card-background {
        min-height: 600px; /* 모바일에서도 이미지 전체가 보이도록 */
    }
    
    /* Product Logos Mobile */
    .logo-left img,
    .logo-right img {
        max-height: 360px;
        max-width: 100%;
    }
    
    /* Brand Story Text Mobile */
    .brand-text-title-1,
    .brand-text-title-2,
    .brand-text-title-3 {
        font-size: 32pt; /* 32pt로 변경 */
        margin: 0 0 15px 0;
    }
    
    .brand-text-subtitle-1,
    .brand-text-subtitle-2,
    .brand-text-subtitle-3 {
        font-size: 16pt; /* 16pt로 변경 */
        margin: 0 0 30px 0;
    }
    
    .brand-text-description-1,
    .brand-text-description-2,
    .brand-text-description-3 {
        font-size: 10pt; /* 10pt로 변경 */
        line-height: 28pt;
    }
    
    /* Hover Texts Mobile */
    .hover-text-left h2,
    .hover-text-right h2 {
        font-size: 12pt; /* 36pt * 0.5 = 18pt */
        letter-spacing: 0pt;
        margin: 0 0 20px 0;
    }
    
    .hover-text-left p,
    .hover-text-right p {
        font-size: 8pt; /* 22pt * 0.5 = 11pt */
    }
    
    /* 모바일에서도 호버 로고는 30% 위치에 설정됨 */
    
    .list ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    
    .list .logo_w {
        padding: 20px 15px;
    }
    
    .list .logo-placeholder {
        width: 100px;
        height: 35px;
        font-size: 10px;
    }
    
    .list .cap {
        font-size: 10px;
        margin-top: 6px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links {
        display: none;
    }
    .mobile-br {
    display: block; /* 모바일에서만 표시 */
    }
    .mobile-hide {
    display: none !important; /* 모바일에서 숨김 */
    }
}


/* 모바일 전용 줄바꿈 */
.mobile-br {
    display: none; /* 데스크탑에서는 숨김 */
}

/* 모바일에서 숨김 (반대 개념) */
.mobile-hide {
    display: block; /* 데스크탑에서는 표시 */
}

/* 파트너사 로고 로딩 및 에러 스타일 */
.loading-partners,
.no-partners,
.error-partners {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.loading-partners::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60% { content: '...'; }
    80%, 100% { content: ''; }
}

.error-partners {
    color: rgba(255, 100, 100, 0.9);
}

.no-partners {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ===================================
   Hospital/Pharmacy Admin Styles
   =================================== */

/* 병원/약국 추가 버튼 */
.btn-add-hospital,
.btn-add-pharmacy {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-add-hospital:hover,
.btn-add-pharmacy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* 검색 헤더 상단 (제목 + 추가 버튼) */
.search_header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* 관리자 액션 버튼 (편집/삭제) */
.admin-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.admin-actions .btn-edit,
.admin-actions .btn-delete {
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.admin-actions .btn-edit {
    background: #3498db;
    color: white;
}

.admin-actions .btn-edit:hover {
    background: #2980b9;
}

.admin-actions .btn-delete {
    background: #e74c3c;
    color: white;
}

.admin-actions .btn-delete:hover {
    background: #c0392b;
}

/* 관리자 폼 스타일 */
.admin-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-search-address {
    margin-top: 8px;
    padding: 8px 16px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-search-address:hover {
    background: #e0e0e0;
}

.btn-search-address:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .search_header_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-add-hospital,
    .btn-add-pharmacy {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .admin-actions .btn-edit,
    .admin-actions .btn-delete {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Admin Modal Overlay Styles
   =================================== */

.admin-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.admin-modal {
    background: white !important;
    border-radius: 20px !important;
    width: 90% !important;
    max-width: 800px !important;
    max-height: 85vh !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
    animation: slideUp 0.3s;
    position: relative !important;
    overflow: hidden !important;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.admin-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 25px 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: none !important;
}

.admin-modal-header h3 {
    margin: 0 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

.admin-modal-close {
    background: rgba(255,255,255,0.2) !important;
    border: none !important;
    color: white !important;
    font-size: 28px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s !important;
    line-height: 1 !important;
}

.admin-modal-close:hover {
    background: rgba(255,255,255,0.3) !important;
    transform: rotate(90deg) !important;
}

.admin-modal-body {
    padding: 30px !important;
    overflow-y: auto !important;
    flex: 1 !important;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .admin-modal {
        width: 95% !important;
        max-height: 90vh !important;
    }
    
    .admin-modal-header {
        padding: 20px !important;
    }
    
    .admin-modal-header h3 {
        font-size: 18px !important;
    }
    
    .admin-modal-body {
        padding: 20px !important;
    }
}

/* 전화하기 버튼 숨기기 */
.tel_btn {
    display: none !important;
}

/* 관리자 버튼 스타일 */
.admin-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-manage-hospital,
.btn-manage-pharmacy {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.btn-manage-hospital:hover,
.btn-manage-pharmacy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-add-hospital,
.btn-add-pharmacy {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.btn-add-hospital:hover,
.btn-add-pharmacy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* 관리 모달 스타일 */
.manage-container {
    max-width: 1200px;
    margin: 0 auto;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.manage-header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.manage-header-left {
    text-align: left;
}

.manage-header-right {
    display: flex;
    align-items: center;
}

.manage-header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
}

.manage-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.btn-add-hospital-in-manage,
.btn-add-pharmacy-in-manage {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    margin: 0;
}

.btn-add-hospital-in-manage:hover,
.btn-add-pharmacy-in-manage:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* 엑셀 업로드 버튼 */
.btn-excel-upload {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    margin-right: 10px;
}

.btn-excel-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* 엑셀 업로드 모달 스타일 */
.excel-upload-container {
    max-width: 600px;
    margin: 0 auto;
}

.upload-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.upload-header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
}

.upload-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.upload-section {
    margin-bottom: 30px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: #FF6B35;
    background: #fff5f2;
}

.upload-icon {
    font-size: 48px;
    color: #FF6B35;
    margin-bottom: 15px;
}

.upload-text h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.upload-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.template-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.template-section h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}

.template-section p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
}

.btn-download-template {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.btn-download-template:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.upload-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
}

.upload-notice h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #856404;
}

.upload-notice ul {
    margin: 0;
    padding-left: 20px;
    color: #856404;
    font-size: 14px;
}

.upload-notice li {
    margin-bottom: 8px;
}

/* 진행률 표시 */
.upload-progress {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.progress-header h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.btn-cancel-upload {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-cancel-upload:hover {
    background: #c0392b;
}

.progress-bar-container {
    background: #e0e0e0;
    border-radius: 10px;
    height: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar {
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

/* 결과 표시 */
.upload-results {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.results-header h4 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #333;
    text-align: center;
}

.results-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.stat-success,
.stat-failed {
    text-align: center;
}

.stat-success .stat-label {
    color: #27ae60;
    font-weight: 600;
}

.stat-failed .stat-label {
    color: #e74c3c;
    font-weight: 600;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.failed-list {
    background: #fff;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
}

.failed-list h5 {
    margin: 0 0 15px 0;
    color: #e74c3c;
    font-size: 16px;
}

.failed-item {
    background: #ffeaea;
    border-left: 4px solid #e74c3c;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.failed-item:last-child {
    margin-bottom: 0;
}

.failed-item .address {
    color: #666;
    font-style: italic;
}

.failed-item .error {
    color: #e74c3c;
    font-weight: 600;
}

.results-actions {
    text-align: center;
    margin-top: 20px;
}

.btn-close-results {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.3s;
}

.btn-close-results:hover {
    background: #5a6fd8;
}

.btn-retry-failed {
    background: #f39c12;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-retry-failed:hover {
    background: #e67e22;
}

/* 관리 도구바 */
.manage-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-shrink: 0;
}

.manage-search {
    flex: 1;
    max-width: 300px;
}

.manage-search input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.manage-search input:focus {
    outline: none;
    border-color: #667eea;
}

.manage-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bulk-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.bulk-select input[type="checkbox"] {
    transform: scale(1.2);
}

.bulk-delete-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    display: none;
}

.bulk-delete-btn.show {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bulk-delete-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

/* 관리 목록 컨테이너 */
.manage-list-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.manage-list-container::-webkit-scrollbar {
    width: 6px;
}

.manage-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.manage-list-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.manage-list-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.manage-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.manage-header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
}

.manage-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.manage-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    cursor: pointer;
}

.manage-item:hover {
    background: #f8f9fa;
    border-color: #667eea;
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.manage-item.selected {
    background: #e3f2fd;
    border-color: #2196f3;
}

.manage-item-checkbox {
    margin-right: 12px;
    transform: scale(1.1);
}

.manage-item-info {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.manage-item-info h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.manage-item-info .address {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.manage-item-info .phone {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

.manage-item-info .coordinates {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.manage-item-actions {
    display: flex;
    gap: 6px;
    min-width: 120px;
    justify-content: flex-end;
}

.btn-edit,
.btn-delete {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.btn-edit {
    background: #f39c12;
    color: white;
}

.btn-edit:hover {
    background: #e67e22;
    transform: translateY(-1px);
}

.btn-delete {
    background: #e74c3c;
    color: white;
}

.btn-delete:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.no-data,
.error {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

.error {
    color: #e74c3c;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}

/* 페이지네이션 */
.manage-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-shrink: 0;
}

.pagination-info {
    font-size: 14px;
    color: #666;
}

.pagination-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination-btn:disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}

.pagination-current {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination-jump {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.pagination-jump input {
    width: 60px;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

/* 헤더 행 */
.manage-list-header {
    display: grid;
    grid-template-columns: 40px 2fr 2fr 1fr 1fr 120px;
    gap: 16px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    align-items: center;
}

/* 통계 정보 */
.manage-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.stat-number {
    font-weight: 600;
    color: #333;
}

/* 반응형 */
@media (max-width: 768px) {
    .manage-container {
        max-width: 95vw;
        max-height: 90vh;
    }
    
    .manage-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .manage-header-left {
        text-align: center;
    }
    
    .manage-header-right {
        justify-content: center;
    }

    /* 엑셀 업로드 반응형 */
    .excel-upload-container {
        padding: 0 10px;
    }
    
    .file-upload-area {
        padding: 30px 15px;
    }
    
    .upload-icon {
        font-size: 36px;
    }
    
    .upload-text h4 {
        font-size: 16px;
    }
    
    .results-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .progress-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .progress-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .manage-item-info {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .manage-list-header {
        display: none;
    }
    
    .manage-toolbar {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .manage-search {
        max-width: none;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Company Introduction Styles */
.company-intro {
    margin-top: 20px;
    text-align: left;
}

.company-intro p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Brand Identity Styles */
.brand-identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.brand-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.brand-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-section h3 i {
    font-size: 20px;
    color: #ff6b6b;
}

.brand-content p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.brand-content p:last-child {
    margin-bottom: 0;
}

.highlight-red {
    color: #e74c3c;
    font-weight: 700;
}

.brand-content strong {
    color: var(--theme-accent);
    font-weight: 700;
}

/* Responsive Design for Brand Identity */
@media (max-width: 1024px) {
    .brand-identity-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .brand-identity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .brand-section {
        padding: 20px;
    }
    
    .brand-section h3 {
        font-size: 20px;
    }
    
    .company-intro p {
        font-size: 15px;
    }
    
    .brand-content p {
        font-size: 14px;
    }
}

/* Product Detail Page Styles */
.product-detail-section {
    background: #fff;
    padding: 100px 0 0px 0;
    height: auto;
}

.product-detail-container {
    display: flex;
    align-items: stretch;
    gap: 100px;
    max-width: 1430px;
    margin: 0 auto;
    height: auto;
}

.product-image-container {
    max-width: 650px;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.product-image-wrapper {
    width: 650px;
    height: 650px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product-info-container {
    width: 680px;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    background: transparent;
}

.product-info-content {
    width: 100%;
    max-width: 600px;
    padding-top: 40px;
}

.brand-name {
    align-self: stretch;
    color: #5A5A5A;
    font-family: "Noto Sans KR";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.96px;
    margin-bottom: 16px;
    white-space: nowrap;
}

.product-title {
    align-self: stretch;
    color: #000;
    font-family: "Noto Sans KR";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -1.92px;
    margin-bottom: 24px;
    white-space: nowrap;
}

.product-description {
    margin-bottom: 50px;
    position: relative;
}

.product-description::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    
    height: 2px;
    background: #E7E7E7;
}

.product-description p {
    color: #5A5A5A;
    font-family: "Noto Sans KR";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.8px;

}

.product-specs {
    margin-bottom: 40px;
}

.spec-row {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    gap: 20px;
}

.spec-label {
    width: 100px;
    color: #383838;
    font-family: "Noto Sans KR";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.88px;
    flex-shrink: 0;
    white-space: nowrap;
}

.spec-value {
    color: #5A5A5A;
    font-family: "Noto Sans KR";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.8px;
    flex: 1;
    white-space: nowrap;
}

.product-actions {
    display: flex;
    gap: 16px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--theme-accent);
    border: 2px solid var(--theme-accent);
}

.btn-secondary:hover {
    background: var(--theme-accent);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Product Detail */
@media (max-width: 1600px) {
    .product-detail-container {
        width: 100%;
        max-width: 1430px;
        gap: 60px;
    }
    
    .product-image-container {
        width: 500px;
        height: 500px;
    }
    
    .product-info-container {
        width: 500px;
        height: 500px;
    }
    
    .product-image-wrapper {
        width: 350px;
        height: 440px;
        padding: 50px;
    }
}

@media (max-width: 1200px) {
    .product-info-content{
        padding: 0px !important;
    }
    .product-detail-container {
        flex-direction: column;
        height: auto;
        gap: 40px;
        padding: 40px 0;
    }
    
    .product-image-container,
    .product-info-container {
        width: 100%;
        height: auto;
    }
    
    .product-image-wrapper {
        width: 300px;
        height: 378px;
        padding: 20px;
    }
    
    .product-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 56px;
    }
    
    .product-detail-section {
        padding: 76px 20px 20px 20px;
        min-height: auto;
    }
    
    .product-detail-container {
        flex-direction: column;
        gap: 30px;
        
    }
    
    .product-image-wrapper {
        width: 358px;
        height: 358px;
        padding: 15px;
    }
    
    
    .product-title {
        font-size: 28px;
    }
    
    .product-subtitle {
        font-size: 16px;
    }
    
    .product-description p {
        font-size: 16px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* 모바일에서 텍스트 자동 줄바꿈 */
    .brand-name,
    .product-title,
    .product-description p,
    .spec-label,
    .spec-value {
        white-space: normal;
    }
    
    .ingredients-title,
    .product-name,
    .ingredients-list {
        white-space: normal;
    }
    
    /* 모바일에서 브랜드명 스타일 */
    .brand-name {
        color: #5A5A5A;
        font-family: "Noto Sans KR";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        letter-spacing: -0.72px;
    }
    
    /* 모바일에서 제품명 스타일 */
    .product-title {
        align-self: stretch;
        color: #000;
        font-family: "Noto Sans KR";
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        letter-spacing: -1.12px;
    }
    
    /* 모바일에서 제품 설명 스타일 */
    .product-description p {
        align-self: stretch;
        color: #5A5A5A;
        font-family: "Noto Sans KR";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: -0.64px;
    }
    
    /* 모바일에서 제품 스펙 컨테이너 스타일 */
    .product-specs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
        margin: 0px !important;
    }
    
    /* 모바일에서 스펙 행 간격 조정 */
    .spec-row {
        margin-bottom: 20px;
    }
    
    /* 모바일에서 스펙 라벨 스타일 */
    .spec-label {
        width: 60px;
        color: #383838;
        font-family: "Noto Sans KR";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: -0.56px;
        flex-shrink: 0;
    }
    
    /* 모바일에서 스펙 값 스타일 */
    .spec-value {
        flex: 1 0 0;
        color: #5A5A5A;
        font-family: "Noto Sans KR";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: -0.56px;
    }
    
    /* 모바일에서 전체 섹션 가로 패딩 */
    .product-detail-image-section,
    .product-ingredients-section {
        padding: 0 0px;
    }
    
    /* 모바일에서 상세페이지 이미지 섹션 위쪽 패딩 조정 */
    .product-detail-image-section {
        padding: 0px 20px !important;
        margin-top: 0px !important;
    }
    
    /* 모바일에서 전성분 섹션 위쪽 패딩 조정 */
    .product-ingredients-section {
        padding: 40px 20px !important;
        
    }
    
    /* 모바일에서 상세페이지 이미지 컨테이너 크기 조정 */
    .product-detail-image-container {
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* 모바일에서 전성분 컨테이너 크기 조정 */
    .product-ingredients-container {
        width: 100% !important;
        box-sizing: border-box;
    }
}
/* 

body.mobile-mode .product-detail-section {
    padding: 20px 16px;
}

body.mobile-mode .product-detail-container {
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

body.mobile-mode .product-image-wrapper {
    width: 250px;
    height: 315px;
    padding: 15px;
}

body.mobile-mode .product-title {
    font-size: 28px;
}

body.mobile-mode .product-subtitle {
    font-size: 16px;
}

body.mobile-mode .product-description p {
    font-size: 16px;
}

body.mobile-mode .feature-item {
    font-size: 14px;
}

body.mobile-mode .product-actions {
    flex-direction: column;
}

body.mobile-mode .btn-primary, 
body.mobile-mode .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
}

/* 
body.mobile-mode .brand-name,
body.mobile-mode .product-title,
body.mobile-mode .product-description p,
body.mobile-mode .spec-label,
body.mobile-mode .spec-value {
    white-space: normal;
}

body.mobile-mode .ingredients-title,
body.mobile-mode .product-name,
body.mobile-mode .ingredients-list {
    white-space: normal;
}


body.mobile-mode .brand-name {
    color: #5A5A5A;
    font-family: "Noto Sans KR";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.72px;
}


body.mobile-mode .product-title {
    align-self: stretch;
    color: #000;
    font-family: "Noto Sans KR";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -1.12px;
}


body.mobile-mode .product-description p {
    align-self: stretch;
    color: #5A5A5A;
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.64px;
}


body.mobile-mode .product-specs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}


body.mobile-mode .spec-label {
    width: 60px;
    color: #383838;
    font-family: "Noto Sans KR";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.56px;
    flex-shrink: 0;
}


body.mobile-mode .spec-value {
    flex: 1 0 0;
    color: #5A5A5A;
    font-family: "Noto Sans KR";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.56px;
}

body.mobile-mode .product-detail-image-section,
body.mobile-mode .product-ingredients-section {
    padding: 0 16px;
}


body.mobile-mode .product-detail-image-section {
    padding: 40px 16px 0 16px !important;
}


body.mobile-mode .product-ingredients-section {
    padding: 40px 16px !important;
}

body.mobile-mode .product-detail-image-container {
    width: calc(100% - 32px) !important;
    height: 1014px;
    box-sizing: border-box;
}


body.mobile-mode .product-ingredients-container {
    width: calc(100% - 32px);
    box-sizing: border-box;
} */

/* Product Detail Image Section */
.product-detail-image-section {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 200px; /* padding 대신 margin 사용 */
    padding: 0; /* padding 제거 */
}

.product-detail-image-container {
    width: 840px;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product-detail-image-container img {
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Product Ingredients Section */
.product-ingredients-section {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 250px 0;
}

.product-ingredients-container {
    display: flex;
    width: 840px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.ingredients-title {
    color: #000;
    font-family: "Noto Sans KR";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.product-name {
    align-self: stretch;
    color: #000;
    font-family: "Noto Sans KR";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.ingredients-list {
    align-self: stretch;
    color: #8C8C8C;
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

/* Contact Page Styles */
.contact-section {
    padding: 180px 0 80px 0;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-title {
    color: var(--Foundation-black, #000);
    font-family: "Noto Sans KR";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -2.4px;
    text-align: center;
    margin-bottom: 60px;
}

.contact-divider {
    width: 100%;
    height: 2px;
    background: #000;
    margin: 0 0 60px 0;
}

.contact-description {
    color: var(--Foundation-Grey-G200, #5A5A5A);
    text-align: center;
    font-family: "Noto Sans KR";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 33px */
    letter-spacing: -0.88px;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-row {
    display: flex;
    gap: 20px;
}

.contact-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-group-full {
    flex: 1;
}

.contact-form-group label {
    color: #333;
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: "Noto Sans KR";
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #4361ee;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-privacy-group {
    margin: 0;
}

.contact-privacy-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.contact-privacy-label input[type="checkbox"] {
    display: none;
}

.contact-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.contact-privacy-label input[type="checkbox"]:checked + .contact-checkbox-custom {
    background: #00358E;
    border-color: #00358E;
}

.contact-privacy-label input[type="checkbox"]:checked + .contact-checkbox-custom::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url('/images/contact_images/Frame 193.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-privacy-text {
    color: var(--Foundation-Grey-G100, #8C8C8C);
    font-family: "Noto Sans KR";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.8px;
}

.contact-submit-btn {
    display: flex;
    padding: 24px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: #00358E;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: "Noto Sans KR";
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 0;
}

.contact-submit-btn:hover {
    background: #002a6b;
}

/* Responsive Design */
/* 모바일 반응형 */
@media (max-width: 768px) {
    /* Logo Carousel 모바일 속도 조정 */
    .logo-carousel-track.animate {
    animation: scroll 80s linear infinite;
    }

    .footer {
        box-sizing: border-box;
        width: 100%;
        height: 380px;
        
        justify-content: center;
        align-items: center;
    }
    
    .footer-container {
        height: 380px;
    }
    
    .footer-info {
        gap: 30px;
        flex-direction: column;
    }
    
    .info-item {
        gap: 4px;
    }
    
    .info-title,
    .info-content {
        font-size: 14px;
    }

    
    .bt_info {
        -webkit-text-size-adjust: none;
        --font-color-base: #000;
        --font-color-heading: #000;
        --font-color-primary: #000;
        --font-color-secondary: #ef441f;
        --font-color-warn: #ec2a1d;
        --font-color-success: #0985df;
        font-size: 13px;
        font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
        color: #b3b3b3;
        margin: 0;
        padding: 0;
        margin-bottom: 22px;
    }
    
    .bt_top_right {
        -webkit-text-size-adjust: none;
        --font-color-base: #000;
        --font-color-heading: #000;
        --font-color-primary: #000;
        --font-color-secondary: #ef441f;
        --font-color-warn: #ec2a1d;
        --font-color-success: #0985df;
        font-size: 13px;
        font-family: "Poppins","Noto Sans KR",Arial,sans-serif !important;
        color: #b3b3b3;
        padding: 0;
        display: flex;
        margin: 0;
        flex-direction: column;
        text-align: left;
    }
    
    .contact-title {
        font-size: 24px;
        letter-spacing: -0.96px;
    }
    
    .contact-description {
        font-size: 14px;
        letter-spacing: -0.56px;
    }
    
    .contact-section {
        padding-top: 80px;
    }
    
    .contact-form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-privacy-text {
        font-size: 12.8px; /* 16px의 80% (20% 축소) */
        letter-spacing: -0.512px; /* -0.64px의 80% */
    }
    
    .contact-form-group label {
        font-size: 12.8px; /* 16px의 80% (20% 축소) */
    }
    
    .contact-form-group input,
    .contact-form-group select,
    .contact-form-group textarea {
        font-size: 12.8px; /* 16px의 80% (20% 축소) */
    }
}

/* Contact Form Popup Modals */
.contact-success-popup,
.contact-error-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact-success-popup .popup-content,
.contact-error-popup .popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.contact-success-popup .popup-icon {
    background: #4CAF50;
    color: white;
}

.contact-error-popup .popup-icon {
    background: #f44336;
    color: white;
}

.popup-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: "Noto Sans KR", sans-serif;
}

.popup-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    font-family: "Noto Sans KR", sans-serif;
}

.popup-close-btn {
    background: #4361ee;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Noto Sans KR", sans-serif;
}

.popup-close-btn:hover {
    background: #3651de;
    transform: translateY(-2px);
}

/* Mobile responsive for popups */
@media (max-width: 768px) {
    .contact-success-popup .popup-content,
    .contact-error-popup .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .popup-content h3 {
        font-size: 20px;
    }
    
    .popup-content p {
        font-size: 14px;
    }
    
    .popup-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Admin Bar Styles */
#admin-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: "Noto Sans KR", sans-serif;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-manage-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Noto Sans KR", sans-serif;
}

.contact-manage-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.logout-btn {
    padding: 8px 16px;
    background: rgba(220, 53, 69, 0.8);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Noto Sans KR", sans-serif;
}

.logout-btn:hover {
    background: rgba(220, 53, 69, 1);
    transform: translateY(-1px);
}

/* Add top padding to body when admin bar is present */
body.admin-mode {
    padding-top: 60px;
}

/* Mobile responsive for admin bar */
@media (max-width: 768px) {
    #admin-bar {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .admin-info {
        font-size: 12px;
    }
    
    .admin-actions {
        gap: 8px;
    }
    
    .contact-manage-btn,
    .logout-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    body.admin-mode {
        padding-top: 80px;
    }
}

/* Admin Contact Board Styles */
.admin-contact-board-section {
    padding: 120px 0 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 2px solid #e9ecef;
}

.admin-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: "Noto Sans KR", sans-serif;
}

.admin-page-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.admin-refresh-btn,
.admin-logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Noto Sans KR", sans-serif;
}

.admin-refresh-btn {
    background: #6c757d;
    color: white;
}

.admin-refresh-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.admin-logout-btn {
    background: #dc3545;
    color: white;
}

.admin-logout-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Stats Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-2px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-icon.unread {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.stat-icon.read {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.stat-icon.completed {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
}

.stat-icon.total {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-family: "Noto Sans KR", sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    font-family: "Noto Sans KR", sans-serif;
}

/* Filters */
.admin-filters {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    font-family: "Noto Sans KR", sans-serif;
}

.filter-group select,
.filter-group input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Noto Sans KR", sans-serif;
    transition: border-color 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #4361ee;
}

/* Table */
.admin-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: #f8f9fa;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    font-size: 14px;
    font-family: "Noto Sans KR", sans-serif;
}

.admin-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #f1f3f4;
    font-size: 14px;
    font-family: "Noto Sans KR", sans-serif;
}

.contact-row {
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.contact-row:hover {
    background-color: #f8f9fa;
}

.contact-row.unread {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.date-cell {
    white-space: nowrap;
}

.date-time {
    font-size: 13px;
    color: #666;
}

.affiliation-cell {
    font-weight: 500;
    color: #333;
}

.inquiry-type-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.inquiry-type-badge.partnership {
    background: #007bff;
}

.inquiry-type-badge.distribution {
    background: #28a745;
}

.inquiry-type-badge.export {
    background: #ffc107;
    color: #333;
}

.inquiry-type-badge.product {
    background: #17a2b8;
}

.inquiry-type-badge.clinical {
    background: #6f42c1;
}

.inquiry-type-badge.other {
    background: #6c757d;
}

.name-cell {
    font-weight: 600;
    color: #333;
}

.phone-cell {
    font-family: monospace;
    color: #666;
}

.status-select {
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.status-select:focus {
    outline: none;
    border-color: #4361ee;
}

.actions-cell {
    white-space: nowrap;
}

.action-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.view-btn {
    background: #e3f2fd;
    color: #1976d2;
}

.view-btn:hover {
    background: #bbdefb;
    transform: translateY(-1px);
}

.delete-btn {
    background: #ffebee;
    color: #d32f2f;
}

.delete-btn:hover {
    background: #ffcdd2;
    transform: translateY(-1px);
}

.loading-cell,
.no-data {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #4361ee;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pagination */
.admin-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: "Noto Sans KR", sans-serif;
}

.pagination-btn:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #4361ee;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    font-size: 14px;
    color: #666;
    font-family: "Noto Sans KR", sans-serif;
}

/* Contact Detail Modal */
.contact-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    font-family: "Noto Sans KR", sans-serif;
}

.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e9ecef;
    color: #333;
}

.modal-body {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-section h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
    font-family: "Noto Sans KR", sans-serif;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Noto Sans KR", sans-serif;
}

.detail-item span {
    font-size: 14px;
    color: #333;
    font-family: "Noto Sans KR", sans-serif;
}

.detail-item a {
    color: #4361ee;
    text-decoration: none;
}

.detail-item a:hover {
    text-decoration: underline;
}

.message-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4361ee;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-family: "Noto Sans KR", sans-serif;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.status-badge.미확인 {
    background: #ffc107;
    color: #333;
}

.status-badge.확인 {
    background: #17a2b8;
}

.status-badge.처리완료 {
    background: #28a745;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.btn-secondary,
.btn-danger {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Noto Sans KR", sans-serif;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-danger:hover {
    background: #c82333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .admin-page-header {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .admin-page-actions {
        justify-content: center;
    }
    
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admin-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .admin-table-container {
        overflow-x: auto;
    }
    
    .admin-table {
        min-width: 600px;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .admin-page-title {
        font-size: 24px;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

/* 슬라이드 텍스트 애니메이션 */
.slide-text-animated {
    overflow: hidden;
}

.slide-line {
    display: inline-block;
    transform: translateX(20%);
    opacity: 0;
    transition: all 0.3s ease;
}

/* 활성화된 슬라이드에서만 애니메이션 실행 */
.slide.active .slide-line,
.slide.active .video-text .slide-line {
    animation: slideInFromRight 1.6s ease-out forwards;
}

.slide:not(.active) .slide-line,
.slide:not(.active) .video-text .slide-line {
    transform: translateX(20%) !important;
    opacity: 0 !important;
    animation: none !important;
}

.slide.active .slide-line[data-delay="0"] {
    animation-delay: 0s;
}

.slide.active .slide-line[data-delay="0.2"] {
    animation-delay: 0.2s;
}

.slide.active .slide-line[data-delay="0.1"] {
    animation-delay: 0.1s;
}

.slide.active .slide-line[data-delay="0.15"] {
    animation-delay: 0.15s;
}

.slide.active .slide-line[data-delay="0.25"] {
    animation-delay: 0.25s;
}

.slide.active .slide-line[data-delay="0.3"] {
    animation-delay: 0.3s;
}

.slide.active .slide-line[data-delay="0.4"] {
    animation-delay: 0.4s;
}

.slide.active .slide-line[data-delay="0.55"] {
    animation-delay: 0.55s;
}

.slide.active .slide-line[data-delay="0.5"] {
    animation-delay: 0.5s;
}

.slide.active .slide-line[data-delay="0.6"] {
    animation-delay: 0.6s;
}

.slide.active .slide-line[data-delay="0.8"] {
    animation-delay: 0.8s;
}

.slide.active .slide-line[data-delay="1.1"] {
    animation-delay: 1.1s;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(20%);
        opacity: 0;
    }
    30% {
        opacity: 0.2;
    }
    60% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .product-list-section-main {
        display: none;
    }
}

