/* Luxury Beauty Theme - Custom Styles */
/* 自定义样式扩展 */

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 加载动画 */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* 卡片悬停效果增强 */
.merchant-card {
    position: relative;
    overflow: hidden;
}

.merchant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.merchant-card:hover::before {
    left: 100%;
}

/* 按钮点击效果 */
.merchant-button:active,
.hero-button:active,
.shop-button:active {
    transform: scale(0.98);
}

/* 图片懒加载占位 */
.merchant-image {
    background: linear-gradient(135deg, #F8E8E8 0%, #F4E5C2 100%);
}

/* 移动端优化 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .merchant-card {
        margin: 0 1rem;
    }
}
