/**
 * 라토피아 랜딩페이지 스타일
 * 밝은 배경 + 골드 포인트
 */

/* ========================================
   기본 변수
   ======================================== */
:root {
    --lp-primary: #1a1a1a;
    --lp-secondary: #c9a86c;
    --lp-gold: #d4af37;
    --lp-bg: #ffffff;
    --lp-bg-light: #fafafa;
    --lp-bg-warm: #fdf8f3;
    --lp-text: #1a1a1a;
    --lp-text-muted: #6b7280;
    --lp-border: #e5e7eb;
}

/* ========================================
   페이지 기본
   ======================================== */
.latopia-landing-page {
    background-color: var(--lp-bg);
}

/* ========================================
   히어로 섹션
   ======================================== */
.latopia-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    overflow: hidden;
}

/* 히어로 배경 이미지 - Zoom 효과 */
.latopia-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: latopiaHeroZoom 7s ease-out forwards;
}

@keyframes latopiaHeroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.03);
    }
}

.latopia-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
}

.latopia-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.latopia-hero-title {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 0.5em;
    margin: 0 0 24px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
    color: #ffffff;
    text-shadow: 0 2px 30px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.5);
}

.latopia-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0 0 48px;
    opacity: 1;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s both;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.4);
}

.latopia-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.latopia-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    opacity: 0.7;
    animation: fadeInUp 1s ease 0.6s both;
}

.latopia-hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.latopia-hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, #fff 0%, transparent 100%);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

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

/* ========================================
   버튼 스타일
   ======================================== */
.latopia-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.latopia-btn-primary {
    background: var(--lp-secondary);
    color: #fff;
    border: 2px solid var(--lp-secondary);
}

.latopia-btn-primary:hover {
    background: var(--lp-gold);
    border-color: var(--lp-gold);
}

.latopia-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.latopia-btn-secondary:hover {
    background: #fff;
    color: var(--lp-primary);
    border-color: #fff;
}

.latopia-btn-outline {
    background: transparent;
    color: var(--lp-primary);
    border: 2px solid var(--lp-primary);
}

.latopia-btn-outline:hover {
    background: var(--lp-primary);
    color: #fff;
}

/* ========================================
   섹션 공통
   ======================================== */
.latopia-section {
    padding: 120px 0;
}

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

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

.latopia-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lp-secondary);
    margin-bottom: 16px;
}

.latopia-section-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--lp-text);
    margin: 0 0 20px;
}

.latopia-section-desc {
    font-size: 1.125rem;
    color: var(--lp-text-muted);
    line-height: 1.8;
    margin: 0;
}

.latopia-section-footer {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   소개 섹션
   ======================================== */
.latopia-intro {
    background: var(--lp-bg-warm);
}

.latopia-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.latopia-intro-content .latopia-section-title {
    text-align: left;
}

.latopia-intro-text {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--lp-text-muted);
}

.latopia-intro-text p {
    margin: 0 0 20px;
}

.latopia-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ========================================
   공간 소개 섹션
   ======================================== */
.latopia-space {
    background: var(--lp-bg);
}

.latopia-space-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

/* 메이슨리 스타일 레이아웃 */
.latopia-space-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* 1번째 이미지 - 왼쪽 크게 */
.latopia-space-item:nth-child(1) {
    grid-column: span 5;
    grid-row: span 2;
}

/* 2번째 이미지 - 오른쪽 상단 */
.latopia-space-item:nth-child(2) {
    grid-column: span 4;
    grid-row: span 1;
}

/* 3번째 이미지 - 오른쪽 상단 작게 */
.latopia-space-item:nth-child(3) {
    grid-column: span 3;
    grid-row: span 1;
}

/* 4번째 이미지 - 오른쪽 하단 */
.latopia-space-item:nth-child(4) {
    grid-column: span 3;
    grid-row: span 1;
}

/* 5번째 이미지 - 오른쪽 하단 */
.latopia-space-item:nth-child(5) {
    grid-column: span 4;
    grid-row: span 1;
}

.latopia-space-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: brightness(0.95);
}

.latopia-space-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* 이미지 오버레이 효과 */
.latopia-space-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.latopia-space-item:hover::before {
    opacity: 1;
}

.latopia-space-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.latopia-space-item:hover .latopia-space-caption {
    transform: translateY(0);
    opacity: 1;
}

/* 첫 번째 이미지 캡션은 항상 표시 */
.latopia-space-item:nth-child(1) .latopia-space-caption {
    transform: translateY(0);
    opacity: 1;
    font-size: 1rem;
    padding: 24px 28px;
}

/* 줌 아이콘 */
.latopia-space-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: var(--lp-primary);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.latopia-space-item:hover .latopia-space-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.latopia-space-zoom:hover {
    background: var(--lp-secondary);
    color: #fff;
}

/* 갤러리 이미지 클릭 가능 표시 */
.latopia-space-item {
    cursor: pointer;
}

/* ========================================
   시그니처 메뉴 섹션
   ======================================== */
.latopia-signature-menu {
    background: var(--lp-bg-light);
}

.latopia-signature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 60px;
}

.latopia-signature-item {
    text-align: center;
    flex: 0 0 280px;
    max-width: 280px;
}

/* 시그니처 메뉴 개수별 정렬 */
.latopia-signature-grid[data-count="1"] {
    justify-content: center;
}

.latopia-signature-grid[data-count="2"] {
    justify-content: center;
    gap: 40px 120px;
}

.latopia-signature-grid[data-count="3"] {
    justify-content: space-between;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.latopia-signature-grid[data-count="4"],
.latopia-signature-grid[data-count="5"],
.latopia-signature-grid[data-count="6"] {
    justify-content: center;
}

.latopia-signature-image {
    width: 280px;
    height: 280px;
    margin: 0 auto 30px;
}

.latopia-signature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.18));
    transition: transform 0.3s ease;
}

.latopia-signature-item:hover .latopia-signature-image img {
    transform: translateY(-10px);
}

.latopia-signature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lp-text);
    margin: 0 0 12px;
}

.latopia-signature-desc {
    font-size: 1rem;
    color: var(--lp-text-muted);
    margin: 0 0 16px;
    line-height: 1.7;
}

.latopia-signature-price {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--lp-secondary);
    margin: 0;
}

/* ========================================
   운영시간 섹션
   ======================================== */
.latopia-hours {
    background: var(--lp-bg);
}

.latopia-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.latopia-hours-content .latopia-section-title,
.latopia-contact-content .latopia-section-label {
    text-align: left;
}

.latopia-hours-text {
    font-size: 1rem;
    line-height: 2;
    color: var(--lp-text-muted);
}

.latopia-hours-text p {
    margin: 0 0 16px;
}

.latopia-contact-list {
    margin-top: 30px;
}

.latopia-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--lp-bg-light);
    border-radius: 8px;
    margin-bottom: 16px;
    text-decoration: none;
    color: var(--lp-text);
    transition: all 0.3s ease;
}

.latopia-contact-item:hover {
    background: var(--lp-bg-warm);
    transform: translateX(5px);
}

.latopia-contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-secondary);
    border-radius: 50%;
    color: #fff;
}

.latopia-contact-text {
    font-size: 1.125rem;
    font-weight: 500;
}

/* ========================================
   찾아오는 길 섹션
   ======================================== */
.latopia-location {
    background: var(--lp-bg-warm);
}

.latopia-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.latopia-location-item {
    margin-bottom: 30px;
}

.latopia-location-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-text);
    margin: 0 0 12px;
}

.latopia-location-label svg {
    color: var(--lp-secondary);
}

.latopia-location-item p,
.latopia-location-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--lp-text-muted);
    margin: 0;
}

.latopia-location-text p {
    margin: 0 0 8px;
}

.latopia-map-container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--lp-bg-light);
}

.latopia-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.latopia-map-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--lp-text-muted);
}

.latopia-map-fallback a {
    color: var(--lp-secondary);
    text-decoration: underline;
}

/* 지도 버튼 컨테이너 */
.latopia-map-buttons-wrap {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.latopia-btn-kakao,
.latopia-btn-naver {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

/* 카카오맵 버튼 */
.latopia-btn-kakao {
    background: #488DF7;
    color: #ffffff;
}

.latopia-btn-kakao:hover {
    background: #3A7DE6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 141, 247, 0.4);
}

/* 네이버 지도 버튼 */
.latopia-btn-naver {
    background: #03C75A;
    color: #ffffff;
}

.latopia-btn-naver:hover {
    background: #02B550;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 199, 90, 0.4);
}

.latopia-btn-kakao svg,
.latopia-btn-naver svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   로고 섹션
   ======================================== */
.latopia-logo-section {
    background: var(--lp-bg);
    padding: 100px 0;
}

.latopia-logo-content {
    text-align: center;
}

.latopia-logo-image {
    max-width: 300px;
    height: auto;
    margin-bottom: 24px;
}

.latopia-logo-text {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.5em;
    color: var(--lp-text);
    margin: 0 0 16px;
}

.latopia-logo-tagline {
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--lp-secondary);
    text-transform: uppercase;
    margin: 0;
}

/* ========================================
   애니메이션
   ======================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

/* ========================================
   반응형 - 태블릿
   ======================================== */
@media (max-width: 1024px) {
    .latopia-hero-title {
        font-size: 3.5rem;
        letter-spacing: 0.3em;
    }

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

    .latopia-intro-grid,
    .latopia-hours-grid,
    .latopia-location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* 태블릿에서 Space 갤러리 */
    .latopia-space-gallery {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 200px);
    }

    .latopia-space-item:nth-child(1) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .latopia-space-item:nth-child(2),
    .latopia-space-item:nth-child(3),
    .latopia-space-item:nth-child(4),
    .latopia-space-item:nth-child(5),
    .latopia-space-item:nth-child(6) {
        grid-column: span 3;
        grid-row: span 1;
    }

    /* 태블릿에서 시그니처 메뉴 */
    .latopia-signature-grid {
        gap: 30px 40px;
    }

    .latopia-signature-item {
        flex: 0 0 220px;
        max-width: 220px;
    }

    .latopia-signature-image {
        width: 200px;
        height: 200px;
    }

    .latopia-signature-title {
        font-size: 1.125rem;
    }

    /* 지도 크기 조정 */
    .latopia-map-container {
        height: 400px;
    }
}

/* ========================================
   반응형 - 모바일
   ======================================== */
@media (max-width: 768px) {
    .latopia-hero {
        min-height: 500px;
    }

    .latopia-hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }

    .latopia-hero-subtitle {
        font-size: 1rem;
    }

    .latopia-hero-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .latopia-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

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

    .latopia-section-title {
        font-size: 1.75rem;
    }

    .latopia-section-header {
        margin-bottom: 40px;
    }

    .latopia-intro-text {
        font-size: 1rem;
    }

    /* 모바일에서 Space 갤러리 */
    .latopia-space-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .latopia-space-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .latopia-space-item:nth-child(2),
    .latopia-space-item:nth-child(3),
    .latopia-space-item:nth-child(4),
    .latopia-space-item:nth-child(5),
    .latopia-space-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .latopia-space-item {
        aspect-ratio: 4/3;
    }

    .latopia-space-item:nth-child(1) {
        aspect-ratio: 16/9;
    }

    .latopia-space-caption {
        padding: 12px 16px;
        font-size: 0.8125rem;
    }

    /* 모바일에서 시그니처 메뉴 */
    .latopia-signature-grid {
        gap: 30px 16px;
    }

    .latopia-signature-item {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .latopia-signature-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto 16px;
    }

    .latopia-signature-image img {
        width: 100%;
        height: 100%;
    }

    .latopia-signature-title {
        font-size: 1rem;
    }

    .latopia-signature-desc {
        font-size: 0.8rem;
    }

    .latopia-signature-price {
        font-size: 1rem;
    }

    /* 모바일에서 지도 버튼 */
    .latopia-map-buttons-wrap {
        flex-direction: column;
    }

    .latopia-btn-kakao,
    .latopia-btn-naver {
        padding: 12px 20px;
        font-size: 0.875rem;
        justify-content: center;
    }

    /* 모바일에서 지도 크기 */
    .latopia-map-container {
        height: 350px;
    }

    .latopia-contact-item {
        padding: 16px;
    }

    .latopia-contact-icon {
        width: 40px;
        height: 40px;
    }

    .latopia-contact-text {
        font-size: 1rem;
    }

    .latopia-map-container {
        height: 300px;
    }

    .latopia-logo-image {
        max-width: 200px;
    }

    .latopia-logo-text {
        font-size: 2rem;
        letter-spacing: 0.3em;
    }
}

/* ========================================
   예약하기 버튼 스타일
   ======================================== */
.latopia-contact-reservation {
    background: linear-gradient(135deg, var(--lp-secondary) 0%, var(--lp-gold) 100%);
    border: none;
}

.latopia-contact-reservation .latopia-contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.latopia-contact-reservation .latopia-contact-text {
    color: #fff !important;
    font-weight: 600;
}

.latopia-contact-reservation:hover {
    background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-secondary) 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4);
}

/* ========================================
   갤러리 이미지 확대 모달
   ======================================== */
.latopia-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.latopia-gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.latopia-gallery-modal-content {
    position: relative;
    max-width: 80vw;
    max-height: 80vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.latopia-gallery-modal.active .latopia-gallery-modal-content {
    transform: scale(1);
}

.latopia-gallery-modal-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.latopia-gallery-modal-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* 닫기 버튼 - 오른쪽 상단 고정 */
.latopia-gallery-modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100001;
}

.latopia-gallery-modal-close:hover {
    color: rgba(255, 255, 255, 0.7);
}

.latopia-gallery-modal-close svg {
    width: 32px;
    height: 32px;
}

/* 모달 네비게이션 버튼 - 화면 양쪽 고정 */
.latopia-gallery-modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100001;
}

.latopia-gallery-modal-nav:hover {
    color: rgba(255, 255, 255, 0.7);
}

.latopia-gallery-modal-prev {
    left: 20px;
}

.latopia-gallery-modal-next {
    right: 20px;
}

.latopia-gallery-modal-nav svg {
    width: 40px;
    height: 40px;
}

/* 모달 반응형 */
@media (max-width: 768px) {
    .latopia-gallery-modal-content {
        max-width: 95vw;
        max-height: 70vh;
    }

    .latopia-gallery-modal-image {
        max-height: 60vh;
    }

    .latopia-gallery-modal-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }

    .latopia-gallery-modal-close svg {
        width: 28px;
        height: 28px;
    }

    .latopia-gallery-modal-nav {
        width: 50px;
        height: 60px;
    }

    .latopia-gallery-modal-nav svg {
        width: 32px;
        height: 32px;
    }

    .latopia-gallery-modal-prev {
        left: 10px;
    }

    .latopia-gallery-modal-next {
        right: 10px;
    }

    .latopia-gallery-modal-caption {
        bottom: 80px;
        position: fixed;
        padding: 0 20px;
    }

    /* 모바일 줌 아이콘 크기 */
    .latopia-space-zoom {
        width: 44px;
        height: 44px;
    }

    .latopia-space-zoom svg {
        width: 20px;
        height: 20px;
    }
}
