/* Premium Sneakers Shop 样式 */
.featured-sneakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.sneaker-product-card {
    border: 1px solid #eaeaea;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sneaker-product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sneaker-product-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.sneaker-brand {
    font-weight: bold;
    color: #666;
    margin: 5px 0;
}

.price {
    color: #ff6b6b;
    font-weight: bold;
    margin: 10px 0;
}

.sneaker-brand-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    z-index: 10;
}

.limited-edition-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    z-index: 10;
}

.sneaker-sizes ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.sneaker-sizes li {
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 3px;
}