/* Clopy24 고객용 스타일 */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 슬라이드 애니메이션 */
.slide {
    animation: fadeIn 0.5s ease-in;
}

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

/* 부드러운 스크롤 */
section {
    scroll-margin-top: 80px;
}

/* 가맹점 사진 슬라이더 */
.store-photo-slide {
    transition: opacity 0.3s ease-in-out;
}

.store-photo-slide.active {
    opacity: 1;
}

.store-photo-slide.hidden {
    opacity: 0;
    pointer-events: none;
}

.store-photo-dot {
    transition: all 0.2s ease;
}

.store-photo-dot:hover {
    transform: scale(1.2);
}

/* 모바일 메뉴 애니메이션 */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

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

/* 모바일에서 텍스트 줄임 처리 */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 반응형 */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* 모바일에서 가맹점 카드 간격 조정 */
    #stores-container .grid {
        gap: 1rem;
    }
    
    /* 모바일에서 헤더 높이 조정 */
    header {
        scroll-margin-top: 60px;
    }
    
    section {
        scroll-margin-top: 60px;
    }
}

