/* Athlete Shop Menu Style - Matches existing design */

.athlete-shop-menu {
    background: #000000;
    padding: 60px 20px;
    margin: 0;
    color: #fff;
}

.athlete-shop-menu .shop-header {
    text-align: center;
    margin-bottom: 40px;
}

.athlete-shop-menu .shop-header h3 {
    color: #c5ff00; /* Bright green/yellow */
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.athlete-shop-menu .shop-header h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.athlete-shop-menu .menu-items {
    max-width: 1000px;
    margin: 0 auto;
}

.athlete-shop-menu .menu-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
}

.athlete-shop-menu .menu-item:last-child {
    border-bottom: none;
}

.athlete-shop-menu .item-image {
    flex-shrink: 0;
    width: 120px;
}

.athlete-shop-menu .item-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.athlete-shop-menu .item-details {
    flex-grow: 1;
    padding-right: 20px;
}

.athlete-shop-menu .item-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.athlete-shop-menu .item-subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.athlete-shop-menu .item-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.athlete-shop-menu .item-price-cart {
    flex-shrink: 0;
    text-align: right;
    min-width: 120px;
}

.athlete-shop-menu .item-price {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 15px;
}

.athlete-shop-menu .add-to-cart-button {
    background: #c5ff00;
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.athlete-shop-menu .add-to-cart-button:hover {
    background: #a8e000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(197, 255, 0, 0.3);
}

.athlete-shop-menu .add-to-cart-button.added {
    background: #4caf50;
    color: #fff;
}

/* Empty state styling */
.athlete-shop-menu .empty-state {
    text-align: center;
    padding: 60px 20px;
}

.athlete-shop-menu .empty-state h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.athlete-shop-menu .empty-state p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 30px;
}

.athlete-shop-menu .placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}

.athlete-shop-menu .placeholder-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.athlete-shop-menu .placeholder-image {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 15px;
}

.athlete-shop-menu .placeholder-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin: 10px 0 5px;
}

.athlete-shop-menu .placeholder-status {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .athlete-shop-menu .menu-item {
        flex-direction: column;
        text-align: center;
    }
    
    .athlete-shop-menu .item-details {
        padding-right: 0;
    }
    
    .athlete-shop-menu .item-price-cart {
        text-align: center;
        margin-top: 20px;
    }
    
    .athlete-shop-menu .shop-header h2 {
        font-size: 36px;
    }
    
    .athlete-shop-menu .item-title {
        font-size: 24px;
    }
}