@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

:root {
    --apple-bg: #ffffff;
    --apple-secondary: #f5f5f7;
    --apple-blue: #0071e3;
    --apple-text: #1d1d1f;
    --apple-gray: #86868b;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--apple-text);
    background-color: var(--apple-bg);
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Header */
.glass-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Apple Style Card */
.p-card {
    background: white;
    border-radius: 22px;
    transition: all 0.5s cubic-bezier(0, 0, 0.5, 1);
}

.p-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.btn-buy {
    background-color: var(--apple-blue);
    color: white;
    border-radius: 980px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-buy:hover {
    background-color: #0077ed;
    opacity: 0.9;
}
/* Swiper Custom 스타일 */
.swiper-pagination-bullet-active {
    background: var(--apple-text) !important;
}

.banner-zoom:hover img {
    transform: scale(1.05);
}

.strip-banner {
    background: linear-gradient(90deg, #000000 0%, #1d1d1f 100%);
    position: relative;
    overflow: hidden;
}

.strip-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
		/* 카테고리 필터 버튼 기본 스타일 */
.filter-btn {
    display: inline-block;
    padding: 12px 28px; /* 안쪽 여백을 넓혀 버튼 형태 강조 */
    font-size: 0.95rem;
    font-weight: 700;
    color: #86868b; /* 애플 특유의 보조 텍스트 색상 */
    background-color: #ffffff;
    border: 1px solid #d2d2d7; /* 연한 테두리 */
    border-radius: 980px; /* 완벽한 곡선의 캡슐 모양 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
}

/* 마우스를 올렸을 때 (Hover) */
.filter-btn:hover {
    background-color: #f5f5f7;
    color: #1d1d1f;
    border-color: #86868b;
    transform: translateY(-2px); /* 살짝 위로 올라가는 효과 */
}

/* 선택되었을 때 (Active) */
.filter-btn.active {
    background-color: #1d1d1f; /* 검은색 배경 */
    color: #ffffff; /* 흰색 글자 */
    border-color: #1d1d1f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 미세한 그림자 */
}

/* 모바일 대응: 스크롤이 필요할 경우를 대비 */
@media (max-width: 640px) {
    .filter-btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}
