.home-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background: var(--bg-secondary);
    margin-top: 0;
}

.home-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* 인사말 및 소개 섹션 */
.intro-section {
    padding: 48px 32px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.02), transparent);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.8px;
    line-height: 1.3;
}

.intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-weight: 400;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* 히어로 섹션 */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 56px 32px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.hero-search-form {
    max-width: 600px;
    margin: 0 auto;
}

.hero-search-wrapper {
    display: flex;
    gap: 0;
    background: white;
    border-radius: var(--radius-xl);
    padding: 4px;
    box-shadow: var(--shadow-xl);
}

.hero-search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
    background: transparent;
    color: var(--text-primary);
}

.hero-search-input::placeholder {
    color: var(--text-tertiary);
}

.hero-search-btn {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.hero-search-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero-search-btn i {
    font-size: 18px;
}

.hero-search-hint {
    margin-top: 16px;
    font-size: 13px;
    opacity: 0.85;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}


/* 왜 셀러허브를 이용해야 하는가 */
.why-section {
    padding: 40px 32px;
    border-bottom: 1px solid var(--border-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.why-item {
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.why-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.why-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* 섹션 공통 스타일 */
.popular-searches-section,
.trending-brands-section,
.platform-products-section,
.features-section {
    padding: 32px 32px;
    border-bottom: 1px solid var(--border-color);
}

.features-section {
    border-bottom: none;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.section-title i {
    color: var(--primary-color);
}

/* 인기 검색어 */
.popular-searches-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.popular-item {
    padding: 10px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.popular-item:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* 최근 뜨는 브랜드 */
.trending-brands-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trending-brand-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.trending-brand-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.brand-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.brand-growth {
    font-size: 14px;
    font-weight: 600;
    color: var(--success-color);
    margin-left: auto;
    margin-right: 12px;
}

.brand-count {
    font-size: 13px;
    color: var(--text-secondary);
}

/* 플랫폼별 인기상품 */
.platform-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    margin-top: 8px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.platform-tab {
    padding: 10px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.platform-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.platform-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.platform-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.product-preview-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.product-preview-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-preview-image {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-tertiary);
}

.product-preview-info {
    padding: 12px;
}

.product-preview-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-preview-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.product-preview-platform {
    font-size: 11px;
    color: var(--text-tertiary);
}

.empty-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-tertiary);
    font-size: 14px;
}

/* 주요 기능 소개 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
