:root {
    --soft-pink: #FFF5F7;
    --main-pink: #FFB6C1;
    --deep-pink: #FF69B4;
    --hot-pink: #FF1493;
}
body { 
    background-color: var(--soft-pink); 
    -webkit-tap-highlight-color: transparent; 
}
.product-card:active { transform: scale(0.98); }
.discount-badge { background-color: var(--hot-pink); color: white; }
.pink-btn { background-color: var(--deep-pink); color: white; transition: 0.3s; }
.pink-btn:hover { background-color: var(--hot-pink); }

/* 앱 인터페이스 최적화 */
@media (max-width: 768px) {
    body { padding-bottom: 80px; } /* 하단 바 여유 공간 */
    .hero-text { font-size: 1.75rem !important; line-height: 1.2; }
}

.app-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 65px;
    border-top: 1px solid rgba(255, 182, 193, 0.3);
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom); /* 아이폰 하단 바 대응 */
}

/* 웹뷰(PC)일 때는 하단바 숨김 처리 */
@media (min-width: 769px) {
    .app-bottom-nav { display: none; }
}
