/* ========================================
   포미코리아 경인총판 미래기업 - 메인 스타일시트
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 본사 톤앤매너를 반영한 컬러 팔레트 */
    --primary-color: #2c5aa0;
    --secondary-color: #1e3a5f;
    --accent-color: #4a90e2;
    --text-dark: #222222;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);

    /* 타이포그래피 */
    --font-primary: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* 간격 */
    --section-padding: 80px;
    --container-width: 1200px;

    /* 트랜지션 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow-light);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 400;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    display: block;
}

.nav-item > a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px var(--shadow-light);
    list-style: none;
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.dropdown li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition-normal);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--bg-white);
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Hero Controls */
.hero-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(5px);
}

.hero-controls button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
}

.indicator.active {
    background-color: var(--bg-white);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   Section Common Styles
   ======================================== */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    /* 한글 자연스러운 줄바꿈 */
    word-break: keep-all;
    overflow-wrap: break-word;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
    /* 한글 자연스러운 줄바꿈 */
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-gray);
}

.about-overview {
    margin-top: 50px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 15px 35px var(--shadow-light);
    padding: 40px;
}

.overview-header h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.overview-header p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 30px;
    /* 한글 자연스러운 줄바꿈 */
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.overview-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    font-size: 38px;
}

.overview-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.overview-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    /* 한글 자연스러운 줄바꿈 */
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: auto;
}

.overview-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-gray);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-ceo {
    margin-top: 60px;
}

.ceo-card {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(320px, 1.2fr);
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.ceo-media {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('../images/premium-2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 340px;
}

.ceo-content {
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ceo-greeting {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
}

.ceo-title {
    font-size: 28px;
    line-height: 1.4;
    color: var(--text-dark);
}

.ceo-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.75;
}

.ceo-sign {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.ceo-sign strong {
    font-weight: 700;
}

.about-location {
    margin-top: 60px;
}

.location-card {
    display: grid;
    grid-template-columns: minmax(320px, 1.3fr) minmax(320px, 1.2fr);
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.location-content {
    padding: 48px 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent-color);
}

.location-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 15px;
    color: var(--text-gray);
}

.info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-row strong {
    min-width: 68px;
    font-weight: 600;
    color: var(--text-dark);
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.highlight {
    display: flex;
    gap: 12px;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-gray);
}

.highlight-icon {
    font-size: 18px;
}

.location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   Business Section
   ======================================== */
.business {
    background-color: var(--bg-light);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.business-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition-normal);
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.business-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

.business-content {
    padding: 30px;
}

.business-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.business-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.business-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 15px;
    transition: var(--transition-normal);
}

.business-link:hover,
.business-link:focus {
    color: var(--accent-color);
}

.business-link:focus-visible {
    outline: 3px solid rgba(44, 90, 160, 0.35);
    outline-offset: 4px;
}

.business-link__icon {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.business-link__icon::before,
.business-link__icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: currentColor;
    transition: var(--transition-normal);
}

.business-link__icon::after {
    transform: rotate(90deg);
}

.business-card.is-open .business-link__icon {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.business-card.is-open .business-link__icon::after {
    transform: rotate(0deg);
    opacity: 0;
}

.business-detail {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-white);
    padding: 0 30px 30px;
}

.business-detail[hidden] {
    display: none;
}

.business-detail__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 24px;
}

.business-detail__summary {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.business-detail__summary p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

.business-detail__list,
.business-detail__steps {
    margin: 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.business-detail__list li strong,
.business-detail__steps li strong {
    color: var(--text-dark);
}

.business-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.business-detail__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.business-detail__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.business-detail__link:hover {
    color: var(--accent-color);
}

.business-detail__gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.business-detail__gallery figure {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px var(--shadow-light);
    background-color: var(--bg-light);
}

.business-detail__gallery img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.business-detail__gallery figcaption {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
}

.business-detail__inner--showroom {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.business-detail__gallery--showroom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.business-detail__gallery--showroom img {
    height: 260px;
}

.business-card.is-open {
    box-shadow: 0 20px 45px var(--shadow-medium);
}

.section-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.section-nav__menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-nav__menu a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 999px;
    background-color: var(--bg-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.section-nav__menu a:hover,
.section-nav__menu a:focus {
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.15);
}

.section-nav__menu a:focus-visible {
    outline: 3px solid rgba(44, 90, 160, 0.35);
    outline-offset: 3px;
}

/* ========================================
   Products Section
   ======================================== */
.products {
    background-color: var(--bg-white);
}

.section-description {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 10px;
}

.products-group {
    margin-bottom: 80px;
}

.products-group:last-of-type {
    margin-bottom: 0;
}

.products-group__header {
    margin-bottom: 32px;
    text-align: left;
}

.products-group__header h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.products-group__header p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px var(--shadow-light);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px var(--shadow-medium);
}

.product-card__image {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

.product-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
}

.product-card__tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 999px;
    background-color: rgba(44, 90, 160, 0.08);
}

.product-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.product-card__content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.product-card__list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
}

/* Products Intro Box */
.products-intro-box {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-radius: 8px;
}

.products-intro-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.products-intro-box p {
    font-size: 16px;
    color: var(--text-gray);
}

/* Product Detail Grid */
.product-detail-grid {
    display: grid;
    gap: 40px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition-normal);
}

.product-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.product-detail-image {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

.product-detail-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-detail-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    font-size: 15px;
    color: var(--text-dark);
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.feature-icon {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
    font-size: 16px;
}

.product-specs {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.spec-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: right;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* Premium Collection Styles */
.premium-collection {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.premium-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    color: var(--bg-white);
}

.premium-banner-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.premium-banner-content p {
    font-size: 18px;
    opacity: 0.95;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.premium-feature {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.premium-feature:hover {
    transform: translateY(-5px);
    background-color: var(--bg-white);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.premium-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.premium-feature h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.premium-feature p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.premium-products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.showcase-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition-normal);
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.showcase-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

.showcase-info {
    padding: 25px;
    text-align: center;
}

.showcase-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.showcase-info p {
    font-size: 15px;
    color: var(--text-gray);
}

.premium-cta {
    text-align: center;
    padding: 50px 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.premium-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.premium-cta p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background-color: var(--bg-white);
}

.faq-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto 50px;
    padding: 18px 26px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-light);
    font-size: 15px;
    color: var(--text-dark);
}

.faq-highlight strong {
    color: var(--primary-color);
    font-size: 16px;
    letter-spacing: 0.5px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: start;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: var(--bg-white);
    box-shadow: 0 12px 30px var(--shadow-light);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px var(--shadow-medium);
}

.faq-item.is-open {
    border-color: var(--primary-color);
    box-shadow: 0 18px 40px var(--shadow-medium);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-normal);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-question:hover,
.faq-question:focus {
    color: var(--primary-color);
}

.faq-question:focus-visible {
    outline: 3px solid rgba(44, 90, 160, 0.35);
    outline-offset: 4px;
}

.faq-item.is-open .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-normal);
}

.faq-icon::after {
    transform: rotate(90deg);
}

.faq-item.is-open .faq-icon {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
    background-color: var(--bg-white);
}

.faq-item.is-open .faq-icon::after {
    transform: rotate(0deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
}

.faq-item.is-open .faq-answer {
    opacity: 1;
    padding-bottom: 28px;
}

.faq-answer p {
    margin: 22px 0 12px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-list,
.faq-steps {
    margin: 0;
    padding-left: 22px;
    color: var(--text-gray);
}

.faq-list li,
.faq-steps li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.faq-answer > *:last-child {
    margin-bottom: 0;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.info-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.info-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition-normal);
}

.footer-menu a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.footer-policies {
    display: flex;
    gap: 15px;
    font-size: 13px;
    align-items: center;
}

.footer-policy-link {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    opacity: 0.8;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-normal);
}

.footer-policy-link:hover,
.footer-policy-link:focus {
    opacity: 1;
    text-decoration: underline;
}

.footer-policy-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.4);
    outline-offset: 3px;
}

/* ========================================
   Legal Modal
   ======================================== */
.legal-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.55);
    padding: 40px 20px;
    z-index: 2000;
    overflow-y: auto;
}

.legal-modal.open {
    display: flex;
}

.legal-modal__box {
    background-color: var(--bg-white);
    color: var(--text-color);
    max-width: 760px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: translateY(15px);
    animation: modal-slide-in 0.3s ease forwards;
}

.legal-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.legal-modal__header h2 {
    font-size: 20px;
    margin: 0;
}

.legal-modal__close {
    background: none;
    border: none;
    color: inherit;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.legal-modal__body {
    padding: 28px;
    max-height: 70vh;
    overflow-y: auto;
    line-height: 1.7;
    font-size: 14px;
}

.legal-modal__body h3 {
    font-size: 18px;
    margin-top: 26px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-modal__body h4 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.legal-modal__body ol,
.legal-modal__body ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-modal__body li {
    margin-bottom: 6px;
}

.legal-modal__table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13px;
}

.legal-modal__table th,
.legal-modal__table td {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px;
    text-align: left;
}

.legal-modal__table thead {
    background-color: rgba(44, 90, 160, 0.08);
    font-weight: 600;
}

.legal-modal__updated {
    font-weight: 600;
    margin-bottom: 18px;
}

.legal-modal__footer {
    margin-top: 30px;
    font-weight: 600;
}

body.modal-open {
    overflow: hidden;
}

@keyframes modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 992px) {
    :root {
        --section-padding: 60px;
    }

    /* 모바일 메뉴 오버레이 (뒷 배경) */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-normal), visibility var(--transition-normal);
        z-index: 998;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: 0 4px 15px var(--shadow-light);
        flex-direction: column;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: max-height var(--transition-normal), 
                    opacity var(--transition-normal), 
                    visibility var(--transition-normal),
                    transform var(--transition-normal);
        z-index: 999;
    }

    .nav-menu.active {
        max-height: calc(100vh - 70px);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        overflow-y: auto;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-item > a {
        padding: 15px 20px;
        display: block;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-light);
        padding: 0;
        margin-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
    }

    .nav-item:hover .dropdown,
    .nav-item.active .dropdown {
        max-height: 500px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* 모바일 헤더 레이아웃 변경 */
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo-subtitle {
        font-size: 12px;
        line-height: 1.3;
    }

    .header-sns {
        display: flex;
        order: 2;
        gap: 10px;
    }

    .header-sns .sns-link {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .mobile-menu-btn {
        order: 3;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .location-card {
        grid-template-columns: 1fr;
    }

    .location-content {
        padding: 40px 32px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 22px 24px;
        font-size: 17px;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .business-detail {
        padding: 0 24px 24px;
    }

    .business-detail__inner {
        grid-template-columns: 1fr;
    }

    .business-detail__gallery--showroom img {
        height: 220px;
    }

    .section-nav__menu {
        flex-direction: column;
        gap: 12px;
    }

    .section-nav__menu a {
        width: 100%;
        justify-content: center;
    }

    .products-group__header {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 12px 0;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 12px;
    }

    .header-sns .sns-link {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .nav-menu {
        top: 60px;
    }

    .nav-menu.active {
        max-height: calc(100vh - 60px);
    }

    .hero {
        min-height: 500px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-controls button {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 0 15px;
    }

    .about-description {
        font-size: 16px;
        line-height: 1.7;
        /* 모바일에서 한글 자연스러운 줄바꿈 강화 */
        word-break: keep-all;
        overflow-wrap: break-word;
        line-break: auto;
        hyphens: none;
    }

    .about-overview {
        padding: 30px 22px;
    }

    .overview-header h3 {
        font-size: 22px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        padding: 24px;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    /* Products Section - Tablet */
    .products-tabs {
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .products-intro-box {
        padding: 25px 20px;
    }

    .products-intro-box h3 {
        font-size: 24px;
    }

    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 300px;
    }

    .product-detail-content {
        padding: 30px 25px;
    }

    .product-detail-name {
        font-size: 26px;
    }

    .premium-banner {
        padding: 40px 30px;
    }

    .premium-banner-content h3 {
        font-size: 28px;
    }

    .premium-banner-content p {
        font-size: 16px;
    }

    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-products-showcase {
        grid-template-columns: 1fr;
    }

    .ceo-card {
        grid-template-columns: 1fr;
    }

    .ceo-content {
        padding: 36px 26px;
    }

    .ceo-title {
        font-size: 24px;
    }

    .location-map iframe {
        min-height: 320px;
    }

    .location-content {
        padding: 36px 26px;
    }

    .location-highlights {
        grid-template-columns: 1fr;
    }

    .faq-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 22px;
    }

    .business-image {
        height: 260px;
    }

    .business-detail__gallery img {
        height: 200px;
    }

    .business-detail__gallery--showroom {
        grid-template-columns: 1fr;
    }

    .section-nav {
        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card__image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    /* About Section - Mobile */
    .about-description {
        font-size: 15px;
        line-height: 1.6;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-break: auto;
        hyphens: none;
    }

    .overview-text {
        font-size: 14px;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-break: auto;
    }

    .overview-header p {
        word-break: keep-all;
        overflow-wrap: break-word;
        line-break: auto;
    }

    /* Products Section - Mobile */
    .products-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .tab-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .products-intro-box {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .products-intro-box h3 {
        font-size: 20px;
    }

    .products-intro-box p {
        font-size: 14px;
    }

    .product-detail-card {
        gap: 0;
    }

    .product-detail-image {
        min-height: 250px;
    }

    .product-detail-content {
        padding: 25px 20px;
    }

    .product-detail-name {
        font-size: 22px;
    }

    .product-description {
        font-size: 14px;
    }

    .ceo-content {
        padding: 30px 22px;
    }

    .ceo-title {
        font-size: 22px;
    }

    .product-features li {
        font-size: 14px;
    }

    .product-specs {
        padding: 15px;
    }

    .spec-item {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .spec-value {
        text-align: left;
    }

    .premium-banner {
        padding: 30px 20px;
    }

    .premium-banner-content h3 {
        font-size: 22px;
    }

    .premium-banner-content p {
        font-size: 14px;
    }

    .premium-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-feature {
        padding: 25px 15px;
    }

    .premium-icon {
        font-size: 40px;
    }

    .premium-feature h4 {
        font-size: 18px;
    }

    .premium-products-showcase {
        gap: 20px;
    }

    .showcase-image {
        height: 200px;
    }

    .showcase-info {
        padding: 20px 15px;
    }

    .showcase-info h4 {
        font-size: 18px;
    }

    .showcase-info p {
        font-size: 14px;
    }

    .premium-cta {
        padding: 30px 20px;
    }

    .premium-cta h3 {
        font-size: 24px;
    }

    .location-content {
        padding: 30px 22px;
    }

    .location-title {
        font-size: 22px;
    }

    .info-row {
        flex-direction: column;
        gap: 6px;
    }

    .premium-cta p {
        font-size: 14px;
    }

    .faq-highlight {
        padding: 16px 18px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-list li,
    .faq-steps li {
        font-size: 14px;
    }

    .business-detail {
        padding: 0 20px 20px;
    }

    .business-detail__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .business-detail__gallery img {
        height: 180px;
    }

    .business-detail__gallery--showroom img {
        height: 200px;
    }

    .section-nav {
        align-items: stretch;
    }

    .product-card__content {
        padding: 24px;
    }

    .product-card__title {
        font-size: 20px;
    }
}

/* ========================================
   파일 업로드 Drag & Drop 스타일
   ======================================== */

.file-upload-area {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background-color: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-area:hover {
    border-color: #2c5aa0;
    background-color: #f0f4ff;
}

.file-upload-area.dragover {
    border-color: #2c5aa0;
    background-color: #e6f0ff;
    transform: scale(1.02);
}

.file-upload-area.has-file {
    border-color: #4caf50;
    background-color: #f1f8f4;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.file-upload-icon {
    color: #2c5aa0;
    margin-bottom: 8px;
}

.file-upload-text {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.file-upload-text strong {
    color: #2c5aa0;
}

.file-upload-hint {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* 파일 미리보기 */
.file-upload-preview {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    gap: 16px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.file-icon {
    flex-shrink: 0;
    color: #4caf50;
}

.file-details {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.file-name {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.file-remove {
    flex-shrink: 0;
    background: #ff5252;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.file-remove:hover {
    background: #d32f2f;
    transform: scale(1.1);
}

.file-remove svg {
    pointer-events: none;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .file-upload-area {
        padding: 30px 15px;
        min-height: 150px;
    }

    .file-upload-icon {
        width: 40px;
        height: 40px;
    }

    .file-upload-text {
        font-size: 14px;
    }

    .file-upload-hint {
        font-size: 12px;
    }

    .file-upload-preview {
        padding: 0 10px;
        gap: 12px;
    }

    .file-name {
        font-size: 14px;
    }

    .file-size {
        font-size: 12px;
    }

    .file-remove {
        width: 32px;
        height: 32px;
    }

    .file-remove svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   SNS Links (Header & Footer)
   ======================================== */

/* Header SNS */
.header-sns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-sns .sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--text-dark);
    font-size: 30px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

/* 유튜브 아이콘 색상 */
.header-sns .sns-link:has(.fa-youtube),
.header-sns .sns-link .fa-youtube {
    color: #FF0000;
}

.header-sns .sns-link:has(.fa-youtube):hover {
    background-color: #FF0000;
    color: white;
    border-color: #FF0000;
    transform: translateY(-2px);
}

/* 인스타그램 아이콘 색상 */
.header-sns .sns-link:has(.fa-instagram) .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.header-sns .sns-link:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
    transform: translateY(-2px);
}

.header-sns .sns-link:has(.fa-instagram):hover .fa-instagram {
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
}

/* Footer SNS */
.footer-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    font-size: 24px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.footer-sns-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-sns-link:has(.fa-youtube):hover {
    background-color: #FF0000;
    border-color: #FF0000;
}

.footer-sns-link:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

/* Responsive - Mobile */
/* SNS는 모바일에서도 표시되므로 여기서는 제거 */

@media (max-width: 768px) {
    .footer-sns {
        gap: 15px;
        margin-top: 25px;
        padding-top: 15px;
    }

    .footer-sns-link {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}
