/* SoccerDeal Mega Menu CSS v4.0 */

.top-notification-bar {
    background: #e74c3c;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
}
.top-notification-bar a { color: #fff; text-decoration: underline; font-weight: 700; }

.top-utility-bar {
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 6px 0;
    font-size: 12px;
}
.top-utility-bar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.top-utility-bar a { color: #333; text-decoration: none; font-size: 12px; }
.top-utility-bar a:hover { color: #e74c3c; }

.main-navigation {
    background: white;
    border-bottom: 2px solid #e74c3c;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.main-navigation .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.site-logo a {
    font-size: 24px;
    font-weight: 800;
    color: #e74c3c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}
.main-menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.main-menu > li > a {
    display: flex;
    align-items: center;
    padding: 0 18px;
    height: 60px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
.main-menu > li > a:hover,
.main-menu > li:hover > a { color: #e74c3c; background: #fafafa; }

.megamenu-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 900px;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: 3px solid #e74c3c;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 9999;
    padding: 25px;
}
.main-menu > li:hover .megamenu-panel { display: block; }

.megamenu-panel .megamenu-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.megamenu-panel .megamenu-column h4 {
    font-size: 13px;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}
.megamenu-panel .megamenu-column ul { list-style: none; margin: 0; padding: 0; }
.megamenu-panel .megamenu-column ul li { margin-bottom: 6px; }
.megamenu-panel .megamenu-column ul li a {
    color: #444;
    text-decoration: none;
    font-size: 13px;
    display: block;
    padding: 4px 0;
    transition: color 0.2s;
}
.megamenu-panel .megamenu-column ul li a:hover { color: #e74c3c; padding-left: 5px; }

.header-search {
    flex: 1;
    max-width: 400px;
    margin: 0 30px;
}
.header-search form {
    display: flex;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.header-search input[type="search"] {
    flex: 1;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
}
.header-search button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 16px;
}

.hero-banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}
.hero-banner h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.hero-banner p { font-size: 18px; margin: 0 0 30px 0; opacity: 0.9; }
.hero-banner .btn-shop {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 14px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: background 0.2s;
}
.hero-banner .btn-shop:hover { background: #c0392b; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.product-card {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    background: white;
}
.product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.product-card img { width: 100%; height: 250px; object-fit: cover; }
.product-card .product-info { padding: 15px; }
.product-card h3 { font-size: 14px; font-weight: 600; margin: 0 0 8px 0; line-height: 1.4; }
.product-card h3 a { color: #222; text-decoration: none; }
.product-card .price { font-size: 16px; font-weight: 700; color: #e74c3c; }
.product-card .original-price { font-size: 13px; color: #999; text-decoration: line-through; margin-left: 8px; }

.section-title {
    text-align: center;
    margin: 50px 0 30px 0;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}
.section-title a { color: #e74c3c; text-decoration: none; font-size: 14px; font-weight: 600; }

.site-footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 50px 0 30px 0;
    margin-top: 60px;
}
.site-footer .container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.site-footer h3 { color: white; font-size: 16px; font-weight: 700; margin: 0 0 20px 0; text-transform: uppercase; }
.site-footer a { color: #aaa; text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
.site-footer a:hover { color: white; }

@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .hero-banner h1 { font-size: 28px; }
    .main-menu { display: none; }
}

/* 隐藏Storefront默认元素 */
.site-header-storefront,
.storefront-primary-navigation,
.storefront-breadcrumb { display: none !important; }
