
/* 全局变量 - 工业科技风格 */
:root {
    --primary-color: #2c3e50; /* 深蓝灰 */
    --secondary-color: #e67e22; /* 活力橙 */
    --accent-color: #3498db; /* 科技蓝 */
    --bg-color: #ecf0f1; /* 浅灰白 */
    --surface-color: #ffffff;
    --text-main: #2c3e50;
    --text-light: #7f8c8d;
    --border-radius: 4px;
    --shadow: 0 4px 12px rgba(44, 62, 80, 0.1);
    --font-family: 'Roboto', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* 顶部导航 */
.gear-header {
    background: var(--surface-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links a {
    margin: 0 15px;
    font-weight: 500;
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.icon-btn {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.icon-btn:hover {
    color: var(--secondary-color);
}

/* 英雄区域 */
.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.tag-promo {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ecf0f1;
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-shop {
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
}

.btn-shop:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-brand {
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: var(--border-radius);
    font-weight: bold;
}

.btn-brand:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-img-box {
    flex: 1;
}

.hero-img-box img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

/* 通用区块 */
.section-area {
    padding: 80px 0;
}

.bg-light {
    background: #ffffff;
}

.bg-dark {
    background: var(--primary-color);
    color: var(--white);
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-head h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-head.light h2 {
    color: var(--white);
}

.section-head p {
    color: var(--text-light);
}

.section-head.light p {
    color: #bdc3c7;
}

/* 产品卡片网格 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    position: relative;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--white);
    z-index: 10;
}

.badge.best-seller { background: var(--secondary-color); }
.badge.new { background: var(--accent-color); }

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f9f9f9;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.specs {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.btn-add {
    padding: 6px 12px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-size: 0.8rem;
}

.btn-add:hover {
    background: var(--secondary-color);
}

/* 鱼轮展示 */
.reel-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reel-item {
    display: flex;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.reel-item.reverse {
    flex-direction: row-reverse;
}

.reel-img {
    flex: 1;
    background: #f4f4f4;
}

.reel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.reel-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reel-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reel-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.reel-specs li {
    font-size: 0.9rem;
    color: var(--text-light);
}

.reel-specs li span {
    font-weight: bold;
    color: var(--primary-color);
}

.desc {
    margin-bottom: 25px;
    color: var(--text-main);
}

.btn-buy {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: bold;
    text-align: center;
    width: fit-content;
}

.btn-buy:hover {
    background: #d35400;
}

/* 拟饵网格 */
.lure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.lure-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    transition: background 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.lure-card:hover {
    background: rgba(255,255,255,0.1);
}

.lure-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.3));
}

.lure-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.lure-card p {
    color: var(--secondary-color);
    font-weight: bold;
}

/* 页脚 */
.site-footer {
    background: #1a252f;
    color: #95a5a6;
    padding: 60px 0 20px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 0.85rem;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .reel-item, .reel-item.reverse {
        flex-direction: column;
    }

    .reel-img img {
        min-height: 200px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
