:root {
    --font-en: "Playfair Display", serif;
    --font-base: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p, a, button, input, textarea, select,
span, div, li, ul, ol, td, th, label {
    font-family: var(--font-base);
}

body {
    background: #fff;
    color: #1a1a1a;
    overflow-x: hidden;
    overflow-y: auto;
}

/* 영문(브랜드/타이틀) 폰트 */
.logo,
.brand-text,
.gallery-title,
.footer-logo {
    font-family: var(--font-en);
}

.topbar {
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #fafafa;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
}

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

.topbar .msg {
    letter-spacing: 0.2px;
}

.topbar-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.topbar-shop-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 공통 버튼 스타일 */
.onb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.onb-btn--black {
    background: #000;
    color: #fff !important;
    border: 1px solid #000;
}
.onb-btn--black:hover {
    background: #222;
}
.onb-btn--outline {
    background: #fff;
    color: #000 !important;
    border: 1px solid #000;
}
.onb-btn--outline:hover {
    background: #f5f5f5;
}

.top-header {
    position: fixed;
    top: 36px;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    background: none;
    padding: 15px 30px;
	padding-right:0;
    border-radius: 5px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #666;
}


.search-btn {
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: white;
    padding: 15px 25px;
    border-radius: 5px;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #1a1a1a;
}

/* 모바일 메뉴 토글 */
.menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1003;
    position: relative;
    pointer-events: auto;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
}

/* 모바일 메뉴 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* 화면 전체 덮기 */
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    z-index: 1002;
    padding: 40px 0 40px 0; /* 상단 헤더 고려 */
    transform: translateX(100%); /* 오른쪽 바깥에서 시작 */
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0); /* 오른쪽 → 왼쪽으로 슬라이드 인 */
    visibility: visible;
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    padding: 0 30px;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1.1rem; /* 모바일에서 더 크게 */
    display: block;
    padding: 18px 0;   /* 터치 영역 확대 */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: rgba(0, 0, 0, 0.02);
}

.mobile-menu .search-btn {
    margin: 20px 30px 0;
    width: calc(100% - 60px);
    text-align: center;
    display: block !important;
}

.hero-section {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    height: auto;
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    animation: fadeIn 1s ease;
	
}

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

.swiper {
    width: 100%;
    height: 100%;
    padding: 0 25px;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.swiper-slide {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.image-banner {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 30px 0 30px 0;
    position: relative;
    z-index: 1;
    display: block;
    background-color: #e0e0e0;
    overflow: hidden;
    animation: slideInUp 1s ease;
}

/* Slick에서도 확실히 이미지 노출 */
.image-banner > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

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

.brand-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    overflow: hidden;   /* 화면 밖으로 나가는 부분은 잘라냄 */
    width: 100%;
    text-align: center; /* 초기에는 가운데 정렬로 보이게 */
}

.brand-text {
    font-size: 12rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.25);
    letter-spacing: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
    will-change: transform;
    animation: scrollText 100s linear infinite;
}

@keyframes scrollText {
    /* 0%: 가운데 정렬 상태에서 시작 */
    0%   { transform: translateX(0); }
    /* 100%: 한 화면 폭만큼 왼쪽으로 이동 */
    100% { transform: translateX(-100%); }
}

.slider-controls {
    position: absolute;
    bottom: 80px;
    right: 80px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 30px;
}

.swiper-pagination {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Slick dots를 기존 swiper-pagination 스타일로 맞춤 */
.swiper-pagination .slick-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.swiper-pagination .slick-dots li {
    width: 12px;
    height: 12px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}
.swiper-pagination .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
}
.swiper-pagination .slick-dots li.slick-active {
    background: #1a1a1a;
    width: 30px;
    border-radius: 6px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: #1a1a1a;
    width: 30px;
    border-radius: 6px;
}

.page-counter {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 3px;
}

.control-arrows {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.arrow-btn:hover {
    background: #1a1a1a;
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
    transition: fill 0.3s;
}

.arrow-btn:hover svg {
    fill: white;
}

/* 모바일: 메인 슬라이더 컨트롤 중앙 배치 & 축소 */
@media (max-width: 768px) {
    .slider-controls {
        bottom: 40px;
        right: 50%;
        transform: translateX(50%);
        gap: 16px;
    }
    .arrow-btn {
        width: 40px;
        height: 40px;
    }
    .arrow-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* 하단 섹션 - career.smpmc.co.kr 스타일 참조 */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Features section */
.features-section {
    padding: 50px 0 100px;
    background: #fff;
}

.features-wrapper {
    display: grid; 
    grid-template-columns: 1.8fr 1fr; 
    gap: 80px; 
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}
@media (max-width: 1024px) { 
    .features-wrapper { 
        grid-template-columns: 1fr; 
        gap: 50px;
    } 
}

.features-title-box {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 700px;
}

.features-header {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.features-main-title {
    font-family: var(--font-base);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -1px;
    word-break: keep-all;
}

.features-main-title p {
    font-family: var(--font-en);
    display: block;
    margin-bottom: 8px;
}



/* ✅ Swiper가 폭을 계산하므로 width 강제 금지 */
.mainSwiper .swiper-slide{
  width: auto;            /* 또는 아예 width 줄 삭제 */
  height: 80vh;           /* 높이는 OK */
  flex-shrink: 0;
}

/* 선택: wrapper는 기본 flex라 유지해도 됨 */
.mainSwiper{
  overflow: hidden;       /* 안전 */
}

.features-description {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin: 0;
    max-width: 34rem; /* 줄 길이 제한으로 자연스러운 줄바꿈 */
    word-break: keep-all; /* 단어 단위(문장 단위)에 가깝게 줄바꿈 */
}

.features-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.features-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.features-link:hover {
    color: #666;
}

.features-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease, background 0.3s ease;
}


.features-controls-box {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 10px;
    height: 100%;
    width: 100%;
}

.features-video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-video-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.features-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.features-video-box:hover .features-video-thumbnail {
    opacity: 1;
    transform: scale(1.05);
}

.features-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.features-video-box:hover .features-video-overlay {
    background: rgba(0,0,0,0.3);
}

.features-play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.features-video-box:hover .features-play-button {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}

.features-play-icon {
    width: 0;
    height: 0;
    border-left: 28px solid #1a1a1a;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.features-video-box:hover .features-play-icon {
    transform: scale(1.1);
}

.features-video-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.features-product-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.features-product-btn {
    padding: 14px 28px;
    border: 1px solid #1a1a1a;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    border-radius: 4px;
    width: 100%;
    min-width: 160px;
    text-decoration: none;
    display: block;
}

.features-product-btn.active {
    background: #1a1a1a;
    color: #fff;
}

.features-product-btn:hover {
    background: #1a1a1a;
    color: #fff;
}
@media (max-width: 768px) {
    .features-section {
		text-align:center;
        padding: 40px 0 60px;
    }
    .features-wrapper {
        padding: 0 24px;
        gap: 32px;
    }
    .features-main-title {
        font-size: 36px;
        line-height: 1.25;
    }
    .features-description {
		max-width:100%;
        font-size: 16px;
        line-height: 1.8;
    }
	
	.features-link{
		justify-content:center;
	}
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 1001;
    line-height: 1;
}

.video-modal-close:hover {
    background: rgba(255,255,255,0.3);
}

.video-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-modal-content {
        max-width: 100%;
    }
    .video-modal-close {
        top: 10px;
        right: 10px;
        background: rgba(255,255,255,0.3);
    }
}

/* Gallery Section */
#gallery {
    padding-top: 0;
}
.gallery-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #fff;
}

.gallery-background {
    display: none;
}

.gallery-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

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

.gallery-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gallery-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.gallery-title-separator {
    width: 1px;
    height: 24px;
    background: #ddd;
}

.gallery-title-kr {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.gallery-header-cta {
    display: flex;
    align-items: center;
}

.gallery-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
}

.gallery-more-btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    line-height: 1;
}

.gallery-more-btn-text {
    position: relative;
}

.gallery-more-btn-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
}

.gallery-more-btn:hover .gallery-more-btn-icon {
    background: #000;
}

.gallery-nav-pause {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -1px;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y pinch-zoom;
    user-select: none;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
}

.gallery-track:active {
    cursor: grabbing;
}

.gallery-item {
    flex: 0 0 calc(25% - 15px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    position: relative;
    transition: transform 0.3s ease;
    border-radius: 15px 0 15px 0;
}

.gallery-item:hover {
    transform: translateY(-4px);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

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

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    .gallery-header {
        margin-bottom: 30px;
    }
    .gallery-title {
        font-size: 24px;
    }
    .gallery-track {
        gap: 16px;
    }
    .gallery-container {
        padding: 0 40px;
    }
    .gallery-item {
        flex: 0 0 calc(50% - 12px); /* 모바일에서 2개씩 보이게 */
    }
	
	.gallery-title-kr{
		display:none;
	}
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .gallery-header-nav {
        align-self: flex-end;
    }
    .gallery-title {
        font-size: 20px;
    }
    .gallery-track {
        gap: 12px;
    }
    .gallery-container {
        padding: 0 24px;
    }
}

/* 제품 소개 섹션 */
.products-section {
    padding: 120px 0;
    background: #f8f8f8;
}

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

.product-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.product-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* 푸터 */
footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.footer-text {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-menu-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-menu-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-menu-link:hover {
    color: white;
}

.footer-login-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s;
	margin-top:30px;
}

.footer-login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-info {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 2;
    text-align: center;
}

.footer-contact-item {
    margin-bottom: 8px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .content-container {
        padding: 0 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 200px;
        gap: 15px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(11) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(4),
    .gallery-item:nth-child(9),
    .gallery-item:nth-child(14) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(5),
    .gallery-item:nth-child(10),
    .gallery-item:nth-child(15) {
        grid-column: span 1;
        grid-row: span 2;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-content {
        margin-bottom: 40px;
    }
    
    .footer-logo-section {
        margin-bottom: 30px;
    }
    
    .footer-menu-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
	.topbar .container{
		padding:0 30px;
	}
	.topbar-shop-btn {
		padding: 5px 10px;
		font-size: 11px;
	}
    .header-inner {
        padding: 0 30px;
    }

    .nav-right {
        gap: 20px;
    }

    .nav-menu {
        display: none;
    }

    .search-btn {
        display: none;
    }

    .menu-toggle {
        display: flex !important;
    }

    .mobile-menu {
        display: block !important;
        top: 60px;
    }

    .brand-text {
        font-size: 6rem;
        letter-spacing: 10px;
    }

    .slider-controls {
        bottom: 40px;
        flex-direction: column;
        gap: 20px;
    }

    .page-counter {
        font-size: 1rem;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
    }

    /* 메인 배너: 모바일에서는 터치 슬라이드만, 페이징/화살표 숨김 */
    .swiper-pagination {
        display: none;
    }
    .slider-controls,
    .arrow-btn {
        display: none;
    }

    .content-container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }

    .gallery-section {
        padding: 80px 0;
    }

    .products-section {
        padding: 80px 0;
    }


    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-card {
        padding: 30px 20px;
    }

    /* FOOTER - 모바일 정렬 및 간소화 */
    footer {
        text-align: center;
        margin-top: 40px; /* 상단 콘텐츠와 겹치지 않게 여백 */
    }
    .footer-inner {
        padding: 0 24px;
    }
    .footer-content {
        margin-bottom: 30px;
    }
    
    .footer-logo-section {
        margin-bottom: 20px;
    }
    
    .footer-logo {
        font-size: 2.3rem;
        margin-bottom: 8px;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
    
    .footer-menu-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        width: 100%;
        justify-content: center;
    }
    
    .footer-menu-row::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .footer-menu-link {
        font-size: 0.9rem;
        white-space: nowrap;
        min-width: fit-content;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-info {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-contact-item {
        text-align: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 20px;
    }


    .gallery-section {
        padding: 60px 0;
    }

    .products-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    .product-card {
        padding: 25px 15px;
    }

    .product-card-icon {
        font-size: 2.5rem;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 0.85rem;
    }

    .footer-inner {
        padding: 0 20px;
    }

    .brand-text {
        font-size: 4rem;
        letter-spacing: 5px;
        color: rgba(0, 0, 0, 0.25);
    }
}
