/* 大厂级简约设计 - 白色+橙色配色方案 */

:root {
    /* 主色调 - 橙色系 */
    --primary-orange: #FF6B35;
    --primary-orange-light: #FF8C5A;
    --primary-orange-dark: #E85A2A;
    --accent-orange: #FFA07A;
    
    /* 辅助色 */
    --secondary-peach: #FFE5D9;
    --secondary-cream: #FFF8F3;
    
    /* 中性色 - 简约灰度 */
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EEEEEE;
    --neutral-300: #E0E0E0;
    --neutral-400: #BDBDBD;
    --neutral-500: #9E9E9E;
    --neutral-600: #757575;
    --neutral-700: #616161;
    --neutral-800: #424242;
    --neutral-900: #212121;
    
    /* 功能色 */
    --success: #4CAF50;
    --danger: #F44336;
    --warning: #FF9800;
    --info: #2196F3;
    
    /* 阴影 - 柔和简约 */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px 0 rgba(0, 0, 0, 0.1);
    
    /* 圆角 - 简约现代 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* 间距 */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
}

/* 全局样式 - 简约现代 */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #FFF9EB;
    color: var(--neutral-900);
    line-height: 1.6;
    font-size: 16px;
}

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

.section-honey {
    background: transparent;
}

/* 简约按钮设计 */
.welly-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.welly-btn-primary {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.welly-btn-primary:hover {
    background: var(--primary-orange-dark);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
    transform: translateY(-1px);
}

.welly-btn-secondary {
    background: white;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.welly-btn-secondary:hover {
    background: var(--secondary-cream);
    transform: translateY(-1px);
}

.welly-btn-pink {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.welly-btn-pink:hover {
    background: var(--primary-orange-dark);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
    transform: translateY(-1px);
}

/* 简约卡片设计 */
.welly-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--neutral-100);
}

.welly-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--neutral-200);
}

/* 简约商品卡片 */
.welly-product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--neutral-100);
}

.welly-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.welly-product-card .product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--neutral-50);
}

.welly-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.welly-product-card:hover .product-image img {
    transform: scale(1.08);
}

.welly-product-card .product-info {
    padding: var(--spacing-lg);
}

.welly-product-card .product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.welly-product-card .product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-orange);
}

/* 简约收藏按钮 */
.welly-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.welly-wishlist-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.welly-wishlist-btn.active {
    background: var(--primary-orange);
    color: white;
}

/* Hero区域 - 简约视频背景 */
.welly-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 90vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000; /* 深色背景，视频加载时显示 */
}

.welly-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
}

.welly-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%); /* 柔和的深色覆盖层，让文字更清晰 */
    z-index: 1;
}

.welly-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-lg);
}

.welly-hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.welly-hero p {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

/* 简约特性卡片 */
.welly-feature {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--neutral-100);
}

.welly-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-peach);
}

.welly-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.welly-feature:hover .welly-feature-icon {
    transform: scale(1.05);
}

.welly-feature-icon.blue,
.welly-feature-icon.pink,
.welly-feature-icon.yellow,
.welly-feature-icon.green,
.welly-feature-icon.purple,
.welly-feature-icon.orange {
    background: var(--secondary-cream);
}

.welly-feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.welly-feature p {
    font-size: 14px;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* 简约分类卡片 */
.welly-category-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--neutral-100);
}

.welly-category-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.welly-category-icon {
    font-size: 40px;
    margin-bottom: var(--spacing-md);
    display: block;
}

.welly-category-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-900);
    letter-spacing: -0.01em;
}

/* 简约徽章 */
.welly-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welly-badge-new {
    background: var(--success);
    color: white;
}

.welly-badge-sale {
    background: var(--danger);
    color: white;
}

.welly-badge-hot {
    background: var(--primary-orange);
    color: white;
}

.welly-badge-neutral {
    background: var(--neutral-100);
    color: var(--neutral-700);
}

/* 简约导航栏 */
.welly-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--neutral-100);
}

.welly-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral-700);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.welly-nav-link:hover {
    color: var(--primary-orange);
    background: var(--secondary-cream);
}

/* 简约价格显示 */
.welly-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.welly-price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: -0.02em;
}

.welly-price-original {
    font-size: 16px;
    color: var(--neutral-400);
    text-decoration: line-through;
}

.welly-price-save {
    font-size: 13px;
    color: var(--primary-orange);
    font-weight: 600;
}

/* 页面标题 */
.welly-page-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--welly-gray-900);
    margin-bottom: 12px;
}

.welly-page-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--welly-gray-600);
    line-height: 1.6;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welly-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.welly-bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* 渐变背景 */
.welly-gradient-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.welly-gradient-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.welly-gradient-yellow {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.welly-gradient-green {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* 网格布局 */
.welly-grid {
    display: grid;
    gap: 24px;
}

.welly-grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.welly-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.welly-grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.welly-grid-5 {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* 响应式 */
@media (max-width: 768px) {
    .welly-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .welly-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* 加载动画 */
.welly-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 输入框 - Getwelly风格 */
.welly-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--welly-gray-200);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: white;
}

.welly-input:focus {
    outline: none;
    border-color: var(--welly-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Toast通知 */
.welly-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 20px;
    border-radius: var(--welly-radius);
    background: white;
    box-shadow: var(--welly-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 分页 - Getwelly风格 */
.welly-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.welly-page-link {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    color: var(--welly-gray-600);
    background: white;
    border: 2px solid var(--welly-gray-200);
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 0 12px;
}

.welly-page-link:hover {
    color: var(--welly-blue);
    border-color: var(--welly-blue);
    background: rgba(74, 144, 226, 0.05);
}

.welly-page-link.active {
    background: var(--welly-blue);
    color: white;
    border-color: var(--welly-blue);
}

/* 标签 */
.welly-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: var(--welly-gray-100);
    color: var(--welly-gray-700);
    transition: all 0.2s ease;
}

.welly-tag:hover {
    background: var(--welly-gray-200);
}

/* 评分星星 */
.welly-rating {
    display: flex;
    gap: 4px;
    font-size: 18px;
}

.welly-rating .star {
    color: var(--welly-yellow);
}

.welly-rating .star.empty {
    color: var(--welly-gray-300);
}

/* 库存状态 */
.welly-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.welly-stock.in-stock {
    background: rgba(108, 207, 127, 0.1);
    color: var(--welly-green);
}

.welly-stock.low-stock {
    background: rgba(245, 158, 11, 0.1);
    color: var(--welly-warning);
}

.welly-stock.out-stock {
    background: rgba(239, 68, 68, 0.1);
    color: var(--welly-danger);
}

/* 简约标题装饰 */
.welly-section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    padding-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.welly-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* 空状态 */
.welly-empty {
    text-align: center;
    padding: 80px 20px;
}

.welly-empty-icon {
    font-size: 80px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.welly-empty-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--welly-gray-900);
    margin-bottom: 12px;
}

.welly-empty-text {
    font-size: 16px;
    color: var(--welly-gray-600);
    margin-bottom: 32px;
}

/* 认证页 - Getwelly风格 */
.welly-auth {
    min-height: calc(100vh - 80px);
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: radial-gradient(circle at top, rgba(255, 189, 153, 0.3), transparent 60%),
                linear-gradient(135deg, #fff5ee 0%, #ffe9df 40%, #fff 100%);
    display: flex;
    align-items: center;
}

.welly-auth-shell {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: var(--spacing-2xl);
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: stretch;
}

.welly-auth-panel {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(255, 168, 92, 0.95));
    border-radius: 32px;
    padding: var(--spacing-3xl);
    color: white;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.35);
}

.welly-auth-panel h2 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 700;
}

.welly-auth-panel p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.welly-auth-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}

.welly-auth-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.welly-auth-card {
    background: white;
    border-radius: 32px;
    padding: var(--spacing-2xl);
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.welly-auth-header h1 {
    font-size: clamp(26px, 3vw, 34px);
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
}

.welly-auth-header p {
    color: var(--neutral-600);
    font-size: 15px;
}

.welly-auth-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--neutral-200);
    font-weight: 600;
    color: var(--neutral-800);
    text-decoration: none;
    transition: all 0.2s ease;
}

.welly-auth-google svg {
    width: 20px;
    height: 20px;
}

.welly-auth-google:hover {
    border-color: var(--neutral-400);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.welly-auth-divider {
    position: relative;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--neutral-500);
}

.welly-auth-divider::before,
.welly-auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--neutral-200);
}

.welly-auth-divider::before {
    left: 0;
}

.welly-auth-divider::after {
    right: 0;
}

.welly-auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.welly-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--neutral-700);
    font-weight: 600;
}

.welly-form-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--neutral-600);
}

.welly-form-checkbox input {
    width: 16px;
    height: 16px;
}

.welly-btn-full {
    width: 100%;
}

.welly-auth-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 14px;
    color: var(--neutral-600);
    flex-wrap: wrap;
}

.welly-auth-links a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
}

.welly-auth-links a:hover {
    text-decoration: underline;
}

.welly-auth-note {
    font-size: 13px;
    color: var(--neutral-500);
    text-align: center;
    line-height: 1.5;
}

.welly-legal-notice {
    border: 1px solid var(--neutral-100);
    border-radius: 20px;
    padding: var(--spacing-md);
    background: var(--secondary-cream);
    color: var(--neutral-700);
    font-size: 13px;
    line-height: 1.6;
}

.welly-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--spacing-sm);
    font-weight: 600;
}

.welly-legal-links a {
    color: var(--primary-orange);
    text-decoration: none;
}

.welly-legal-links a:hover {
    text-decoration: underline;
}

.welly-legal-list {
    margin: var(--spacing-sm) 0 0;
    padding-left: 18px;
    color: var(--neutral-600);
}

.welly-legal-list li {
    margin-bottom: 4px;
}

.welly-legal-summary {
    margin-top: var(--spacing-sm);
    color: var(--neutral-600);
}

.welly-legal-page {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(135deg, #fff9f5 0%, #fff0e8 45%, #ffffff 100%);
}

.welly-legal-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.welly-legal-hero {
    background: white;
    border-radius: 32px;
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-100);
}

.welly-legal-headline {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: var(--spacing-md);
    color: var(--neutral-900);
}

.welly-legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--neutral-500);
}

.welly-legal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.welly-legal-card {
    background: white;
    border-radius: 28px;
    padding: var(--spacing-2xl);
    border: 1px solid var(--neutral-100);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.welly-legal-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.welly-legal-section + .welly-legal-section {
    border-top: 1px solid var(--neutral-100);
    padding-top: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.welly-legal-section h3 {
    font-size: 20px;
    color: var(--neutral-900);
}

.welly-legal-section p {
    color: var(--neutral-600);
    line-height: 1.7;
}

.welly-legal-section ul {
    padding-left: 20px;
    color: var(--neutral-600);
    line-height: 1.6;
}

.welly-legal-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 13px;
}

.welly-legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.welly-legal-highlight {
    background: var(--secondary-cream);
    border-radius: 24px;
    padding: var(--spacing-xl);
    border: 1px dashed var(--neutral-200);
}

.welly-legal-highlight h4 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    color: var(--neutral-900);
}

.welly-legal-highlight p {
    color: var(--neutral-600);
    line-height: 1.6;
}

.welly-legal-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    color: var(--neutral-600);
}

.welly-legal-contact a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
}

.welly-legal-contact a:hover {
    text-decoration: underline;
}

.welly-footer {
    background: var(--neutral-900, #121212);
    color: white;
    margin-top: 0;
}

.welly-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--spacing-3xl, 64px) 20px var(--spacing-2xl, 48px);
}

.welly-footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-2xl, 48px);
    margin-bottom: 36px;
}

.welly-footer-grid > * {
    flex: 1 1 calc(25% - var(--spacing-2xl, 48px));
    min-width: 220px;
}

@media (max-width: 1024px) {
    .welly-footer-grid > * {
        flex-basis: calc(50% - var(--spacing-2xl, 48px));
    }
}

@media (max-width: 640px) {
    .welly-footer-grid {
        justify-content: center;
    }
    .welly-footer-grid > * {
        flex-basis: 100%;
    }
}

.welly-footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.welly-footer-logo {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.welly-footer-logo span {
    font-size: 32px;
}

.welly-footer-logo strong {
    font-size: 18px;
    letter-spacing: -0.01em;
    display: block;
}

.welly-footer-logo small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.welly-footer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm, 12px);
    letter-spacing: -0.01em;
    color: #fff;
}

.welly-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm, 8px);
    font-size: 14px;
    color: #fff;
    padding: 0;
    margin: 0;
}

.welly-footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.welly-footer-links a:hover {
    color: var(--primary-orange, #FF6B35);
}

.welly-contact-card {
    padding: var(--spacing-md, 16px) 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-md, 16px);
    flex-wrap: wrap;
}

.welly-contact-row {
    position: relative;
}

.welly-contact-button {
    width: 56px;
    height: 56px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.welly-contact-button:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.welly-contact-popup {
    position: absolute;
    right: 0;
    bottom: calc(100% + 16px);
    background: white;
    color: var(--neutral-900);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    gap: 16px;
    align-items: center;
    min-width: 320px;
    z-index: 10;
}

.welly-contact-popup img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--neutral-100);
}

.welly-contact-popup.active {
    display: flex;
}

.welly-contact-mail {
    color: var(--primary-orange, #FF6B35);
    font-weight: 600;
    text-decoration: none;
}

.welly-contact-mail:hover {
    text-decoration: underline;
}

.contact-icon {
    width: 28px;
    height: 28px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.welly-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md, 16px);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.welly-footer-section {
    min-width: 0;
}

.welly-footer-brand,
.welly-footer-section {
    color: rgba(255, 255, 255, 0.7);
}

.category-marquee-section {
    background: var(--secondary-cream);
    padding: var(--spacing-2xl) 0;
}

.category-marquee-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.9) 90%, transparent);
}

.category-marquee-track {
    display: inline-flex;
    gap: var(--spacing-md);
    animation: category-marquee 18s linear infinite;
    padding: 12px 0;
}

.category-marquee-track:hover {
    animation-play-state: paused;
}

.welly-category-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 150px;
    height: 150px;
    padding: var(--spacing-md);
    border-radius: 28px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--neutral-800);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welly-category-chip-all {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: #ffffff;
    border: none;
}

.welly-category-chip-all small {
    color: #ffffff;
}

.welly-category-chip strong {
    font-size: 15px;
    letter-spacing: -0.01em;
}

.welly-category-chip small {
    display: block;
    font-size: 12px;
    color: var(--neutral-500);
}

/* 强制“所有商品”卡片内文字为白色，覆盖通用样式 */
.welly-category-chip-all strong,
.welly-category-chip-all small {
    color: #ffffff !important;
}

.welly-category-chip-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--secondary-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.welly-category-chip-all .welly-category-chip-icon {
    background: rgba(255, 255, 255, 0.2);
}

.welly-category-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@keyframes category-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.welly-testimonial-section {
    position: relative;
    background: linear-gradient(180deg, #FFF9EB 0%, #FFF4D8 100%);
    color: var(--neutral-900);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    overflow: hidden;
    margin: 0;
}

.welly-testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6), transparent 45%);
    pointer-events: none;
}

.welly-testimonial-section .container {
    position: relative;
    z-index: 1;
}

.welly-testimonial-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.welly-testimonial-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(79, 55, 32, 0.6);
    margin-bottom: var(--spacing-xs);
}

.welly-testimonial-header h2 {
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    color: #4f3720;
}

.welly-testimonial-header p {
    max-width: 520px;
    color: rgba(79, 55, 32, 0.8);
    font-size: 16px;
}

.welly-testimonial-meta {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    font-weight: 500;
    color: rgba(79, 55, 32, 0.8);
}

.welly-testimonial-count {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 700;
    color: #d48c00;
    line-height: 1;
}

.welly-testimonial-marquee {
    overflow: hidden;
    margin-top: var(--spacing-2xl);
    mask-image: linear-gradient(90deg, transparent, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.95) 90%, transparent);
}

.welly-testimonial-track {
    display: inline-flex;
    gap: var(--spacing-lg);
    animation: welly-testimonial-marquee 48s linear infinite;
    padding-bottom: var(--spacing-md);
}

.welly-testimonial-track:hover {
    animation-play-state: paused;
}

.welly-testimonial-card {
    min-width: 320px;
    max-width: 320px;
    padding: var(--spacing-xl);
    border-radius: 32px;
    border: 1px solid var(--neutral-200);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.welly-testimonial-rating span {
    font-size: 16px;
    margin-right: 4px;
}

.welly-testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-800);
}

.welly-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.welly-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff1df;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(243, 187, 136, 0.5);
}

.welly-testimonial-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--neutral-900);
}

.welly-testimonial-subtext {
    font-size: 13px;
    color: rgba(66, 45, 23, 0.8);
}

@keyframes welly-testimonial-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .welly-testimonial-header {
        flex-direction: column;
    }
    .welly-testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: var(--spacing-lg);
    }
}

@media (min-width: 992px) {
    .welly-testimonial-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    .welly-testimonial-header p {
        max-width: 560px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .welly-testimonial-track {
        animation: none;
    }
}

.welly-form-checkbox a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
}

.welly-form-checkbox a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .welly-auth {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
    
    .welly-auth-panel,
    .welly-auth-card {
        border-radius: 24px;
    }
}

/* 商品卡片悬浮按钮 */
.card-hover-actions {
    position: absolute;
    top: 12px;
    right: -200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
}

.product-card:hover .card-hover-actions,
.welly-product-card:hover .card-hover-actions {
    right: 12px;
}

.hover-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--neutral-200);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--neutral-700);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.hover-pill:hover {
    background: white;
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    transform: translateX(-2px);
}

.hover-pill svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #272636;
    transition: color 0.2s ease;
}

.hover-pill .icon-cart svg path {
    fill: currentColor !important;
    transition: fill 0.2s ease;
}

.hover-pill:hover svg {
    color: var(--primary-orange);
}

/* 收藏按钮状态切换 */
.hover-pill .icon-solid {
    display: inline-flex;
}

.hover-pill .icon-outline {
    display: none;
}

.hover-pill[data-saved="true"] .icon-solid {
    display: none;
}

.hover-pill[data-saved="true"] .icon-outline {
    display: inline-flex;
}

.hover-pill[data-saved="true"] {
    background: white;
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.hover-pill[data-saved="true"] svg {
    color: var(--primary-orange);
}

/* 隐藏数字输入框的上下箭头 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
